startTime = $startTime; } /** * @deprecated * @return string */ public function getStartTime() { return $this->startTime; } /** * Required. The desired State of the finding. * * Accepted values: STATE_UNSPECIFIED, ACTIVE, INACTIVE * * @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(SetFindingStateRequest::class, 'Google_Service_SecurityCommandCenter_SetFindingStateRequest');