"is_compatible", ]; /** * The compatibility check result. If true, the schema is compatible with the * resource. * * @var bool */ public $isCompatible; /** * Failure reasons if verbose = true. * * @var string[] */ public $messages; /** * The compatibility check result. If true, the schema is compatible with the * resource. * * @param bool $isCompatible */ public function setIsCompatible($isCompatible) { $this->isCompatible = $isCompatible; } /** * @return bool */ public function getIsCompatible() { return $this->isCompatible; } /** * Failure reasons if verbose = true. * * @param string[] $messages */ public function setMessages($messages) { $this->messages = $messages; } /** * @return string[] */ public function getMessages() { return $this->messages; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CheckCompatibilityResponse::class, 'Google_Service_ManagedKafka_CheckCompatibilityResponse');