source: vendor/google/apiclient-services/src/AlertCenter/SensitiveAdminAction.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 3.8 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\AlertCenter;
19
20class SensitiveAdminAction extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $actorEmail;
26 /**
27 * @var string
28 */
29 public $eventTime;
30 protected $primaryAdminChangedEventType = PrimaryAdminChangedEvent::class;
31 protected $primaryAdminChangedEventDataType = '';
32 protected $ssoProfileCreatedEventType = SSOProfileCreatedEvent::class;
33 protected $ssoProfileCreatedEventDataType = '';
34 protected $ssoProfileDeletedEventType = SSOProfileDeletedEvent::class;
35 protected $ssoProfileDeletedEventDataType = '';
36 protected $ssoProfileUpdatedEventType = SSOProfileUpdatedEvent::class;
37 protected $ssoProfileUpdatedEventDataType = '';
38 protected $superAdminPasswordResetEventType = SuperAdminPasswordResetEvent::class;
39 protected $superAdminPasswordResetEventDataType = '';
40
41 /**
42 * @param string
43 */
44 public function setActorEmail($actorEmail)
45 {
46 $this->actorEmail = $actorEmail;
47 }
48 /**
49 * @return string
50 */
51 public function getActorEmail()
52 {
53 return $this->actorEmail;
54 }
55 /**
56 * @param string
57 */
58 public function setEventTime($eventTime)
59 {
60 $this->eventTime = $eventTime;
61 }
62 /**
63 * @return string
64 */
65 public function getEventTime()
66 {
67 return $this->eventTime;
68 }
69 /**
70 * @param PrimaryAdminChangedEvent
71 */
72 public function setPrimaryAdminChangedEvent(PrimaryAdminChangedEvent $primaryAdminChangedEvent)
73 {
74 $this->primaryAdminChangedEvent = $primaryAdminChangedEvent;
75 }
76 /**
77 * @return PrimaryAdminChangedEvent
78 */
79 public function getPrimaryAdminChangedEvent()
80 {
81 return $this->primaryAdminChangedEvent;
82 }
83 /**
84 * @param SSOProfileCreatedEvent
85 */
86 public function setSsoProfileCreatedEvent(SSOProfileCreatedEvent $ssoProfileCreatedEvent)
87 {
88 $this->ssoProfileCreatedEvent = $ssoProfileCreatedEvent;
89 }
90 /**
91 * @return SSOProfileCreatedEvent
92 */
93 public function getSsoProfileCreatedEvent()
94 {
95 return $this->ssoProfileCreatedEvent;
96 }
97 /**
98 * @param SSOProfileDeletedEvent
99 */
100 public function setSsoProfileDeletedEvent(SSOProfileDeletedEvent $ssoProfileDeletedEvent)
101 {
102 $this->ssoProfileDeletedEvent = $ssoProfileDeletedEvent;
103 }
104 /**
105 * @return SSOProfileDeletedEvent
106 */
107 public function getSsoProfileDeletedEvent()
108 {
109 return $this->ssoProfileDeletedEvent;
110 }
111 /**
112 * @param SSOProfileUpdatedEvent
113 */
114 public function setSsoProfileUpdatedEvent(SSOProfileUpdatedEvent $ssoProfileUpdatedEvent)
115 {
116 $this->ssoProfileUpdatedEvent = $ssoProfileUpdatedEvent;
117 }
118 /**
119 * @return SSOProfileUpdatedEvent
120 */
121 public function getSsoProfileUpdatedEvent()
122 {
123 return $this->ssoProfileUpdatedEvent;
124 }
125 /**
126 * @param SuperAdminPasswordResetEvent
127 */
128 public function setSuperAdminPasswordResetEvent(SuperAdminPasswordResetEvent $superAdminPasswordResetEvent)
129 {
130 $this->superAdminPasswordResetEvent = $superAdminPasswordResetEvent;
131 }
132 /**
133 * @return SuperAdminPasswordResetEvent
134 */
135 public function getSuperAdminPasswordResetEvent()
136 {
137 return $this->superAdminPasswordResetEvent;
138 }
139}
140
141// Adding a class alias for backwards compatibility with the previous class name.
142class_alias(SensitiveAdminAction::class, 'Google_Service_AlertCenter_SensitiveAdminAction');
Note: See TracBrowser for help on using the repository browser.