enabled = $enabled; } /** * @return bool */ public function getEnabled() { return $this->enabled; } /** * The interval between two consecutive rotations. Default rotation interval * is 2 minutes. * * @param string $rotationInterval */ public function setRotationInterval($rotationInterval) { $this->rotationInterval = $rotationInterval; } /** * @return string */ public function getRotationInterval() { return $this->rotationInterval; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SyncRotationConfig::class, 'Google_Service_Container_SyncRotationConfig');