[e3d4e0a] | 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 |
|
---|
| 18 | namespace Google\Service\CloudSearch;
|
---|
| 19 |
|
---|
| 20 | class EnterpriseTopazSidekickCommonPerson extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | protected $birthdayType = EnterpriseTopazSidekickCommonPersonBirthday::class;
|
---|
| 23 | protected $birthdayDataType = '';
|
---|
| 24 | /**
|
---|
| 25 | * @var string
|
---|
| 26 | */
|
---|
| 27 | public $cellPhone;
|
---|
| 28 | /**
|
---|
| 29 | * @var string
|
---|
| 30 | */
|
---|
| 31 | public $department;
|
---|
| 32 | /**
|
---|
| 33 | * @var string
|
---|
| 34 | */
|
---|
| 35 | public $deskLocation;
|
---|
| 36 | /**
|
---|
| 37 | * @var string
|
---|
| 38 | */
|
---|
| 39 | public $deskPhone;
|
---|
| 40 | /**
|
---|
| 41 | * @var string
|
---|
| 42 | */
|
---|
| 43 | public $displayName;
|
---|
| 44 | /**
|
---|
| 45 | * @var string
|
---|
| 46 | */
|
---|
| 47 | public $email;
|
---|
| 48 | /**
|
---|
| 49 | * @var string
|
---|
| 50 | */
|
---|
| 51 | public $familyName;
|
---|
| 52 | /**
|
---|
| 53 | * @var string
|
---|
| 54 | */
|
---|
| 55 | public $fullAddress;
|
---|
| 56 | /**
|
---|
| 57 | * @var string
|
---|
| 58 | */
|
---|
| 59 | public $gaiaId;
|
---|
| 60 | /**
|
---|
| 61 | * @var string
|
---|
| 62 | */
|
---|
| 63 | public $givenName;
|
---|
| 64 | /**
|
---|
| 65 | * @var string
|
---|
| 66 | */
|
---|
| 67 | public $jobTitle;
|
---|
| 68 | protected $managerType = EnterpriseTopazSidekickCommonPerson::class;
|
---|
| 69 | protected $managerDataType = '';
|
---|
| 70 | /**
|
---|
| 71 | * @var string
|
---|
| 72 | */
|
---|
| 73 | public $obfuscatedId;
|
---|
| 74 | /**
|
---|
| 75 | * @var string
|
---|
| 76 | */
|
---|
| 77 | public $photoUrl;
|
---|
| 78 | /**
|
---|
| 79 | * @var string
|
---|
| 80 | */
|
---|
| 81 | public $streetAddress;
|
---|
| 82 |
|
---|
| 83 | /**
|
---|
| 84 | * @param EnterpriseTopazSidekickCommonPersonBirthday
|
---|
| 85 | */
|
---|
| 86 | public function setBirthday(EnterpriseTopazSidekickCommonPersonBirthday $birthday)
|
---|
| 87 | {
|
---|
| 88 | $this->birthday = $birthday;
|
---|
| 89 | }
|
---|
| 90 | /**
|
---|
| 91 | * @return EnterpriseTopazSidekickCommonPersonBirthday
|
---|
| 92 | */
|
---|
| 93 | public function getBirthday()
|
---|
| 94 | {
|
---|
| 95 | return $this->birthday;
|
---|
| 96 | }
|
---|
| 97 | /**
|
---|
| 98 | * @param string
|
---|
| 99 | */
|
---|
| 100 | public function setCellPhone($cellPhone)
|
---|
| 101 | {
|
---|
| 102 | $this->cellPhone = $cellPhone;
|
---|
| 103 | }
|
---|
| 104 | /**
|
---|
| 105 | * @return string
|
---|
| 106 | */
|
---|
| 107 | public function getCellPhone()
|
---|
| 108 | {
|
---|
| 109 | return $this->cellPhone;
|
---|
| 110 | }
|
---|
| 111 | /**
|
---|
| 112 | * @param string
|
---|
| 113 | */
|
---|
| 114 | public function setDepartment($department)
|
---|
| 115 | {
|
---|
| 116 | $this->department = $department;
|
---|
| 117 | }
|
---|
| 118 | /**
|
---|
| 119 | * @return string
|
---|
| 120 | */
|
---|
| 121 | public function getDepartment()
|
---|
| 122 | {
|
---|
| 123 | return $this->department;
|
---|
| 124 | }
|
---|
| 125 | /**
|
---|
| 126 | * @param string
|
---|
| 127 | */
|
---|
| 128 | public function setDeskLocation($deskLocation)
|
---|
| 129 | {
|
---|
| 130 | $this->deskLocation = $deskLocation;
|
---|
| 131 | }
|
---|
| 132 | /**
|
---|
| 133 | * @return string
|
---|
| 134 | */
|
---|
| 135 | public function getDeskLocation()
|
---|
| 136 | {
|
---|
| 137 | return $this->deskLocation;
|
---|
| 138 | }
|
---|
| 139 | /**
|
---|
| 140 | * @param string
|
---|
| 141 | */
|
---|
| 142 | public function setDeskPhone($deskPhone)
|
---|
| 143 | {
|
---|
| 144 | $this->deskPhone = $deskPhone;
|
---|
| 145 | }
|
---|
| 146 | /**
|
---|
| 147 | * @return string
|
---|
| 148 | */
|
---|
| 149 | public function getDeskPhone()
|
---|
| 150 | {
|
---|
| 151 | return $this->deskPhone;
|
---|
| 152 | }
|
---|
| 153 | /**
|
---|
| 154 | * @param string
|
---|
| 155 | */
|
---|
| 156 | public function setDisplayName($displayName)
|
---|
| 157 | {
|
---|
| 158 | $this->displayName = $displayName;
|
---|
| 159 | }
|
---|
| 160 | /**
|
---|
| 161 | * @return string
|
---|
| 162 | */
|
---|
| 163 | public function getDisplayName()
|
---|
| 164 | {
|
---|
| 165 | return $this->displayName;
|
---|
| 166 | }
|
---|
| 167 | /**
|
---|
| 168 | * @param string
|
---|
| 169 | */
|
---|
| 170 | public function setEmail($email)
|
---|
| 171 | {
|
---|
| 172 | $this->email = $email;
|
---|
| 173 | }
|
---|
| 174 | /**
|
---|
| 175 | * @return string
|
---|
| 176 | */
|
---|
| 177 | public function getEmail()
|
---|
| 178 | {
|
---|
| 179 | return $this->email;
|
---|
| 180 | }
|
---|
| 181 | /**
|
---|
| 182 | * @param string
|
---|
| 183 | */
|
---|
| 184 | public function setFamilyName($familyName)
|
---|
| 185 | {
|
---|
| 186 | $this->familyName = $familyName;
|
---|
| 187 | }
|
---|
| 188 | /**
|
---|
| 189 | * @return string
|
---|
| 190 | */
|
---|
| 191 | public function getFamilyName()
|
---|
| 192 | {
|
---|
| 193 | return $this->familyName;
|
---|
| 194 | }
|
---|
| 195 | /**
|
---|
| 196 | * @param string
|
---|
| 197 | */
|
---|
| 198 | public function setFullAddress($fullAddress)
|
---|
| 199 | {
|
---|
| 200 | $this->fullAddress = $fullAddress;
|
---|
| 201 | }
|
---|
| 202 | /**
|
---|
| 203 | * @return string
|
---|
| 204 | */
|
---|
| 205 | public function getFullAddress()
|
---|
| 206 | {
|
---|
| 207 | return $this->fullAddress;
|
---|
| 208 | }
|
---|
| 209 | /**
|
---|
| 210 | * @param string
|
---|
| 211 | */
|
---|
| 212 | public function setGaiaId($gaiaId)
|
---|
| 213 | {
|
---|
| 214 | $this->gaiaId = $gaiaId;
|
---|
| 215 | }
|
---|
| 216 | /**
|
---|
| 217 | * @return string
|
---|
| 218 | */
|
---|
| 219 | public function getGaiaId()
|
---|
| 220 | {
|
---|
| 221 | return $this->gaiaId;
|
---|
| 222 | }
|
---|
| 223 | /**
|
---|
| 224 | * @param string
|
---|
| 225 | */
|
---|
| 226 | public function setGivenName($givenName)
|
---|
| 227 | {
|
---|
| 228 | $this->givenName = $givenName;
|
---|
| 229 | }
|
---|
| 230 | /**
|
---|
| 231 | * @return string
|
---|
| 232 | */
|
---|
| 233 | public function getGivenName()
|
---|
| 234 | {
|
---|
| 235 | return $this->givenName;
|
---|
| 236 | }
|
---|
| 237 | /**
|
---|
| 238 | * @param string
|
---|
| 239 | */
|
---|
| 240 | public function setJobTitle($jobTitle)
|
---|
| 241 | {
|
---|
| 242 | $this->jobTitle = $jobTitle;
|
---|
| 243 | }
|
---|
| 244 | /**
|
---|
| 245 | * @return string
|
---|
| 246 | */
|
---|
| 247 | public function getJobTitle()
|
---|
| 248 | {
|
---|
| 249 | return $this->jobTitle;
|
---|
| 250 | }
|
---|
| 251 | /**
|
---|
| 252 | * @param EnterpriseTopazSidekickCommonPerson
|
---|
| 253 | */
|
---|
| 254 | public function setManager(EnterpriseTopazSidekickCommonPerson $manager)
|
---|
| 255 | {
|
---|
| 256 | $this->manager = $manager;
|
---|
| 257 | }
|
---|
| 258 | /**
|
---|
| 259 | * @return EnterpriseTopazSidekickCommonPerson
|
---|
| 260 | */
|
---|
| 261 | public function getManager()
|
---|
| 262 | {
|
---|
| 263 | return $this->manager;
|
---|
| 264 | }
|
---|
| 265 | /**
|
---|
| 266 | * @param string
|
---|
| 267 | */
|
---|
| 268 | public function setObfuscatedId($obfuscatedId)
|
---|
| 269 | {
|
---|
| 270 | $this->obfuscatedId = $obfuscatedId;
|
---|
| 271 | }
|
---|
| 272 | /**
|
---|
| 273 | * @return string
|
---|
| 274 | */
|
---|
| 275 | public function getObfuscatedId()
|
---|
| 276 | {
|
---|
| 277 | return $this->obfuscatedId;
|
---|
| 278 | }
|
---|
| 279 | /**
|
---|
| 280 | * @param string
|
---|
| 281 | */
|
---|
| 282 | public function setPhotoUrl($photoUrl)
|
---|
| 283 | {
|
---|
| 284 | $this->photoUrl = $photoUrl;
|
---|
| 285 | }
|
---|
| 286 | /**
|
---|
| 287 | * @return string
|
---|
| 288 | */
|
---|
| 289 | public function getPhotoUrl()
|
---|
| 290 | {
|
---|
| 291 | return $this->photoUrl;
|
---|
| 292 | }
|
---|
| 293 | /**
|
---|
| 294 | * @param string
|
---|
| 295 | */
|
---|
| 296 | public function setStreetAddress($streetAddress)
|
---|
| 297 | {
|
---|
| 298 | $this->streetAddress = $streetAddress;
|
---|
| 299 | }
|
---|
| 300 | /**
|
---|
| 301 | * @return string
|
---|
| 302 | */
|
---|
| 303 | public function getStreetAddress()
|
---|
| 304 | {
|
---|
| 305 | return $this->streetAddress;
|
---|
| 306 | }
|
---|
| 307 | }
|
---|
| 308 |
|
---|
| 309 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 310 | class_alias(EnterpriseTopazSidekickCommonPerson::class, 'Google_Service_CloudSearch_EnterpriseTopazSidekickCommonPerson');
|
---|