onpremDomains = $onpremDomains; } /** * @return OnPremDomainSIDDetails[] */ public function getOnpremDomains() { return $this->onpremDomains; } /** * The state of DomainMigration. * * Accepted values: STATE_UNSPECIFIED, DISABLED, ENABLED, NEEDS_MAINTENANCE * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CheckMigrationPermissionResponse::class, 'Google_Service_ManagedServiceforMicrosoftActiveDirectoryConsumerAPI_CheckMigrationPermissionResponse');