actorEmail = $actorEmail; } /** * @return string */ public function getActorEmail() { return $this->actorEmail; } /** * The time at which event occurred * * @param string $eventTime */ public function setEventTime($eventTime) { $this->eventTime = $eventTime; } /** * @return string */ public function getEventTime() { return $this->eventTime; } /** * Event occurred when primary admin changed in customer's account * * @param PrimaryAdminChangedEvent $primaryAdminChangedEvent */ public function setPrimaryAdminChangedEvent(PrimaryAdminChangedEvent $primaryAdminChangedEvent) { $this->primaryAdminChangedEvent = $primaryAdminChangedEvent; } /** * @return PrimaryAdminChangedEvent */ public function getPrimaryAdminChangedEvent() { return $this->primaryAdminChangedEvent; } /** * Event occurred when SSO Profile created in customer's account * * @param SSOProfileCreatedEvent $ssoProfileCreatedEvent */ public function setSsoProfileCreatedEvent(SSOProfileCreatedEvent $ssoProfileCreatedEvent) { $this->ssoProfileCreatedEvent = $ssoProfileCreatedEvent; } /** * @return SSOProfileCreatedEvent */ public function getSsoProfileCreatedEvent() { return $this->ssoProfileCreatedEvent; } /** * Event occurred when SSO Profile deleted in customer's account * * @param SSOProfileDeletedEvent $ssoProfileDeletedEvent */ public function setSsoProfileDeletedEvent(SSOProfileDeletedEvent $ssoProfileDeletedEvent) { $this->ssoProfileDeletedEvent = $ssoProfileDeletedEvent; } /** * @return SSOProfileDeletedEvent */ public function getSsoProfileDeletedEvent() { return $this->ssoProfileDeletedEvent; } /** * Event occurred when SSO Profile updated in customer's account * * @param SSOProfileUpdatedEvent $ssoProfileUpdatedEvent */ public function setSsoProfileUpdatedEvent(SSOProfileUpdatedEvent $ssoProfileUpdatedEvent) { $this->ssoProfileUpdatedEvent = $ssoProfileUpdatedEvent; } /** * @return SSOProfileUpdatedEvent */ public function getSsoProfileUpdatedEvent() { return $this->ssoProfileUpdatedEvent; } /** * Event occurred when password was reset for super admin in customer's * account * * @param SuperAdminPasswordResetEvent $superAdminPasswordResetEvent */ public function setSuperAdminPasswordResetEvent(SuperAdminPasswordResetEvent $superAdminPasswordResetEvent) { $this->superAdminPasswordResetEvent = $superAdminPasswordResetEvent; } /** * @return SuperAdminPasswordResetEvent */ public function getSuperAdminPasswordResetEvent() { return $this->superAdminPasswordResetEvent; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SensitiveAdminAction::class, 'Google_Service_AlertCenter_SensitiveAdminAction');