expireAfterMs = $expireAfterMs; } /** * @return int */ public function getExpireAfterMs() { return $this->expireAfterMs; } /** * Whether the suspension will be REJECTED or LIFTED upon expiration. REJECTED * is the default behavior. * * @param bool $liftWhenExpired */ public function setLiftWhenExpired($liftWhenExpired) { $this->liftWhenExpired = $liftWhenExpired; } /** * @return bool */ public function getLiftWhenExpired() { return $this->liftWhenExpired; } /** * Milliseconds after which the previous suspension action reminder, if any, * is sent using the selected notification option, for a suspension which is * still PENDING_UNSPECIFIED. * * @param int $remindAfterMs */ public function setRemindAfterMs($remindAfterMs) { $this->remindAfterMs = $remindAfterMs; } /** * @return int */ public function getRemindAfterMs() { return $this->remindAfterMs; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EnterpriseCrmEventbusProtoSuspensionExpiration::class, 'Google_Service_Integrations_EnterpriseCrmEventbusProtoSuspensionExpiration');