applyTime = $applyTime; } /** * @return string */ public function getApplyTime() { return $this->applyTime; } /** * The static mute state. If the value is `MUTED` or `UNMUTED`, then the * finding's overall mute state will have the same value. * * Accepted values: MUTE_UNSPECIFIED, MUTED, UNMUTED, UNDEFINED * * @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(StaticMute::class, 'Google_Service_SecurityCommandCenter_StaticMute');