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\IdentityToolkit; 19 20class IdentitytoolkitRelyingpartySetAccountInfoRequest extends \Google\Collection 21{ 22 protected $collection_key = 'provider'; 23 /** 24 * @var string 25 */ 26 public $captchaChallenge; 27 /** 28 * @var string 29 */ 30 public $captchaResponse; 31 /** 32 * @var string 33 */ 34 public $createdAt; 35 /** 36 * @var string 37 */ 38 public $customAttributes; 39 /** 40 * @var string 41 */ 42 public $delegatedProjectNumber; 43 /** 44 * @var string[] 45 */ 46 public $deleteAttribute; 47 /** 48 * @var string[] 49 */ 50 public $deleteProvider; 51 /** 52 * @var bool 53 */ 54 public $disableUser; 55 /** 56 * @var string 57 */ 58 public $displayName; 59 /** 60 * @var string 61 */ 62 public $email; 63 /** 64 * @var bool 65 */ 66 public $emailVerified; 67 /** 68 * @var string 69 */ 70 public $idToken; 71 /** 72 * @var string 73 */ 74 public $instanceId; 75 /** 76 * @var string 77 */ 78 public $lastLoginAt; 79 /** 80 * @var string 81 */ 82 public $localId; 83 /** 84 * @var string 85 */ 86 public $oobCode; 87 /** 88 * @var string 89 */ 90 public $password; 91 /** 92 * @var string 93 */ 94 public $phoneNumber; 95 /** 96 * @var string 97 */ 98 public $photoUrl; 99 /** 100 * @var string[] 101 */ 102 public $provider; 103 /** 104 * @var bool 105 */ 106 public $returnSecureToken; 107 /** 108 * @var bool 109 */ 110 public $upgradeToFederatedLogin; 111 /** 112 * @var string 113 */ 114 public $validSince; 115 116 /** 117 * @param string 118 */ 119 public function setCaptchaChallenge($captchaChallenge) 120 { 121 $this->captchaChallenge = $captchaChallenge; 122 } 123 /** 124 * @return string 125 */ 126 public function getCaptchaChallenge() 127 { 128 return $this->captchaChallenge; 129 } 130 /** 131 * @param string 132 */ 133 public function setCaptchaResponse($captchaResponse) 134 { 135 $this->captchaResponse = $captchaResponse; 136 } 137 /** 138 * @return string 139 */ 140 public function getCaptchaResponse() 141 { 142 return $this->captchaResponse; 143 } 144 /** 145 * @param string 146 */ 147 public function setCreatedAt($createdAt) 148 { 149 $this->createdAt = $createdAt; 150 } 151 /** 152 * @return string 153 */ 154 public function getCreatedAt() 155 { 156 return $this->createdAt; 157 } 158 /** 159 * @param string 160 */ 161 public function setCustomAttributes($customAttributes) 162 { 163 $this->customAttributes = $customAttributes; 164 } 165 /** 166 * @return string 167 */ 168 public function getCustomAttributes() 169 { 170 return $this->customAttributes; 171 } 172 /** 173 * @param string 174 */ 175 public function setDelegatedProjectNumber($delegatedProjectNumber) 176 { 177 $this->delegatedProjectNumber = $delegatedProjectNumber; 178 } 179 /** 180 * @return string 181 */ 182 public function getDelegatedProjectNumber() 183 { 184 return $this->delegatedProjectNumber; 185 } 186 /** 187 * @param string[] 188 */ 189 public function setDeleteAttribute($deleteAttribute) 190 { 191 $this->deleteAttribute = $deleteAttribute; 192 } 193 /** 194 * @return string[] 195 */ 196 public function getDeleteAttribute() 197 { 198 return $this->deleteAttribute; 199 } 200 /** 201 * @param string[] 202 */ 203 public function setDeleteProvider($deleteProvider) 204 { 205 $this->deleteProvider = $deleteProvider; 206 } 207 /** 208 * @return string[] 209 */ 210 public function getDeleteProvider() 211 { 212 return $this->deleteProvider; 213 } 214 /** 215 * @param bool 216 */ 217 public function setDisableUser($disableUser) 218 { 219 $this->disableUser = $disableUser; 220 } 221 /** 222 * @return bool 223 */ 224 public function getDisableUser() 225 { 226 return $this->disableUser; 227 } 228 /** 229 * @param string 230 */ 231 public function setDisplayName($displayName) 232 { 233 $this->displayName = $displayName; 234 } 235 /** 236 * @return string 237 */ 238 public function getDisplayName() 239 { 240 return $this->displayName; 241 } 242 /** 243 * @param string 244 */ 245 public function setEmail($email) 246 { 247 $this->email = $email; 248 } 249 /** 250 * @return string 251 */ 252 public function getEmail() 253 { 254 return $this->email; 255 } 256 /** 257 * @param bool 258 */ 259 public function setEmailVerified($emailVerified) 260 { 261 $this->emailVerified = $emailVerified; 262 } 263 /** 264 * @return bool 265 */ 266 public function getEmailVerified() 267 { 268 return $this->emailVerified; 269 } 270 /** 271 * @param string 272 */ 273 public function setIdToken($idToken) 274 { 275 $this->idToken = $idToken; 276 } 277 /** 278 * @return string 279 */ 280 public function getIdToken() 281 { 282 return $this->idToken; 283 } 284 /** 285 * @param string 286 */ 287 public function setInstanceId($instanceId) 288 { 289 $this->instanceId = $instanceId; 290 } 291 /** 292 * @return string 293 */ 294 public function getInstanceId() 295 { 296 return $this->instanceId; 297 } 298 /** 299 * @param string 300 */ 301 public function setLastLoginAt($lastLoginAt) 302 { 303 $this->lastLoginAt = $lastLoginAt; 304 } 305 /** 306 * @return string 307 */ 308 public function getLastLoginAt() 309 { 310 return $this->lastLoginAt; 311 } 312 /** 313 * @param string 314 */ 315 public function setLocalId($localId) 316 { 317 $this->localId = $localId; 318 } 319 /** 320 * @return string 321 */ 322 public function getLocalId() 323 { 324 return $this->localId; 325 } 326 /** 327 * @param string 328 */ 329 public function setOobCode($oobCode) 330 { 331 $this->oobCode = $oobCode; 332 } 333 /** 334 * @return string 335 */ 336 public function getOobCode() 337 { 338 return $this->oobCode; 339 } 340 /** 341 * @param string 342 */ 343 public function setPassword($password) 344 { 345 $this->password = $password; 346 } 347 /** 348 * @return string 349 */ 350 public function getPassword() 351 { 352 return $this->password; 353 } 354 /** 355 * @param string 356 */ 357 public function setPhoneNumber($phoneNumber) 358 { 359 $this->phoneNumber = $phoneNumber; 360 } 361 /** 362 * @return string 363 */ 364 public function getPhoneNumber() 365 { 366 return $this->phoneNumber; 367 } 368 /** 369 * @param string 370 */ 371 public function setPhotoUrl($photoUrl) 372 { 373 $this->photoUrl = $photoUrl; 374 } 375 /** 376 * @return string 377 */ 378 public function getPhotoUrl() 379 { 380 return $this->photoUrl; 381 } 382 /** 383 * @param string[] 384 */ 385 public function setProvider($provider) 386 { 387 $this->provider = $provider; 388 } 389 /** 390 * @return string[] 391 */ 392 public function getProvider() 393 { 394 return $this->provider; 395 } 396 /** 397 * @param bool 398 */ 399 public function setReturnSecureToken($returnSecureToken) 400 { 401 $this->returnSecureToken = $returnSecureToken; 402 } 403 /** 404 * @return bool 405 */ 406 public function getReturnSecureToken() 407 { 408 return $this->returnSecureToken; 409 } 410 /** 411 * @param bool 412 */ 413 public function setUpgradeToFederatedLogin($upgradeToFederatedLogin) 414 { 415 $this->upgradeToFederatedLogin = $upgradeToFederatedLogin; 416 } 417 /** 418 * @return bool 419 */ 420 public function getUpgradeToFederatedLogin() 421 { 422 return $this->upgradeToFederatedLogin; 423 } 424 /** 425 * @param string 426 */ 427 public function setValidSince($validSince) 428 { 429 $this->validSince = $validSince; 430 } 431 /** 432 * @return string 433 */ 434 public function getValidSince() 435 { 436 return $this->validSince; 437 } 438} 439 440// Adding a class alias for backwards compatibility with the previous class name. 441class_alias(IdentitytoolkitRelyingpartySetAccountInfoRequest::class, 'Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest'); 442