expirationOffset = $expirationOffset; } /** * @return string */ public function getExpirationOffset() { return $this->expirationOffset; } /** * Output only. The state of the TTL configuration. * * Accepted values: STATE_UNSPECIFIED, CREATING, ACTIVE, NEEDS_REPAIR * * @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(GoogleFirestoreAdminV1TtlConfig::class, 'Google_Service_Firestore_GoogleFirestoreAdminV1TtlConfig');