PluginProbe
Authorizer / 2.2
Authorizer v2.2
3.15.3 3.15.2 3.15.1 3.15.0 3.14.3 3.14.4 3.14.2 3.14.1 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.13 2.9.2 2.9.3 2.9.6 All 126 releases
authorizer / inc / google-api-php-client / src / Google / Service / IdentityToolkit.php

IdentityToolkit.php in Authorizer 2.2, at inc/google-api-php-client/src/Google/Service/IdentityToolkit.php

1,756 lines 35.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Copyright 2010 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 /**
19 * Service definition for IdentityToolkit (v3).
20 *
21 * <p>
22 * Help the third party sites to implement federated login.
23 * </p>
24 *
25 * <p>
26 * For more information about this service, see the API
27 * <a href="https://developers.google.com/identity-toolkit/v3/" target="_blank">Documentation</a>
28 * </p>
29 *
30 * @author Google, Inc.
31 */
32 class Google_Service_IdentityToolkit extends Google_Service
33 {
34
35
36 public $relyingparty;
37
38
39 /**
40 * Constructs the internal representation of the IdentityToolkit service.
41 *
42 * @param Google_Client $client
43 */
44 public function __construct(Google_Client $client)
45 {
46 parent::__construct($client);
47 $this->servicePath = 'identitytoolkit/v3/relyingparty/';
48 $this->version = 'v3';
49 $this->serviceName = 'identitytoolkit';
50
51 $this->relyingparty = new Google_Service_IdentityToolkit_Relyingparty_Resource(
52 $this,
53 $this->serviceName,
54 'relyingparty',
55 array(
56 'methods' => array(
57 'createAuthUri' => array(
58 'path' => 'createAuthUri',
59 'httpMethod' => 'POST',
60 'parameters' => array(),
61 ),'deleteAccount' => array(
62 'path' => 'deleteAccount',
63 'httpMethod' => 'POST',
64 'parameters' => array(),
65 ),'downloadAccount' => array(
66 'path' => 'downloadAccount',
67 'httpMethod' => 'POST',
68 'parameters' => array(),
69 ),'getAccountInfo' => array(
70 'path' => 'getAccountInfo',
71 'httpMethod' => 'POST',
72 'parameters' => array(),
73 ),'getOobConfirmationCode' => array(
74 'path' => 'getOobConfirmationCode',
75 'httpMethod' => 'POST',
76 'parameters' => array(),
77 ),'getPublicKeys' => array(
78 'path' => 'publicKeys',
79 'httpMethod' => 'GET',
80 'parameters' => array(),
81 ),'resetPassword' => array(
82 'path' => 'resetPassword',
83 'httpMethod' => 'POST',
84 'parameters' => array(),
85 ),'setAccountInfo' => array(
86 'path' => 'setAccountInfo',
87 'httpMethod' => 'POST',
88 'parameters' => array(),
89 ),'uploadAccount' => array(
90 'path' => 'uploadAccount',
91 'httpMethod' => 'POST',
92 'parameters' => array(),
93 ),'verifyAssertion' => array(
94 'path' => 'verifyAssertion',
95 'httpMethod' => 'POST',
96 'parameters' => array(),
97 ),'verifyPassword' => array(
98 'path' => 'verifyPassword',
99 'httpMethod' => 'POST',
100 'parameters' => array(),
101 ),
102 )
103 )
104 );
105 }
106 }
107
108
109 /**
110 * The "relyingparty" collection of methods.
111 * Typical usage is:
112 * <code>
113 * $identitytoolkitService = new Google_Service_IdentityToolkit(...);
114 * $relyingparty = $identitytoolkitService->relyingparty;
115 * </code>
116 */
117 class Google_Service_IdentityToolkit_Relyingparty_Resource extends Google_Service_Resource
118 {
119
120 /**
121 * Creates the URI used by the IdP to authenticate the user.
122 * (relyingparty.createAuthUri)
123 *
124 * @param Google_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody
125 * @param array $optParams Optional parameters.
126 * @return Google_Service_IdentityToolkit_CreateAuthUriResponse
127 */
128 public function createAuthUri(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody, $optParams = array())
129 {
130 $params = array('postBody' => $postBody);
131 $params = array_merge($params, $optParams);
132 return $this->call('createAuthUri', array($params), "Google_Service_IdentityToolkit_CreateAuthUriResponse");
133 }
134 /**
135 * Delete user account. (relyingparty.deleteAccount)
136 *
137 * @param Google_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody
138 * @param array $optParams Optional parameters.
139 * @return Google_Service_IdentityToolkit_DeleteAccountResponse
140 */
141 public function deleteAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody, $optParams = array())
142 {
143 $params = array('postBody' => $postBody);
144 $params = array_merge($params, $optParams);
145 return $this->call('deleteAccount', array($params), "Google_Service_IdentityToolkit_DeleteAccountResponse");
146 }
147 /**
148 * Batch download user accounts. (relyingparty.downloadAccount)
149 *
150 * @param Google_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody
151 * @param array $optParams Optional parameters.
152 * @return Google_Service_IdentityToolkit_DownloadAccountResponse
153 */
154 public function downloadAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody, $optParams = array())
155 {
156 $params = array('postBody' => $postBody);
157 $params = array_merge($params, $optParams);
158 return $this->call('downloadAccount', array($params), "Google_Service_IdentityToolkit_DownloadAccountResponse");
159 }
160 /**
161 * Returns the account info. (relyingparty.getAccountInfo)
162 *
163 * @param Google_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody
164 * @param array $optParams Optional parameters.
165 * @return Google_Service_IdentityToolkit_GetAccountInfoResponse
166 */
167 public function getAccountInfo(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody, $optParams = array())
168 {
169 $params = array('postBody' => $postBody);
170 $params = array_merge($params, $optParams);
171 return $this->call('getAccountInfo', array($params), "Google_Service_IdentityToolkit_GetAccountInfoResponse");
172 }
173 /**
174 * Get a code for user action confirmation.
175 * (relyingparty.getOobConfirmationCode)
176 *
177 * @param Google_Relyingparty $postBody
178 * @param array $optParams Optional parameters.
179 * @return Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse
180 */
181 public function getOobConfirmationCode(Google_Service_IdentityToolkit_Relyingparty $postBody, $optParams = array())
182 {
183 $params = array('postBody' => $postBody);
184 $params = array_merge($params, $optParams);
185 return $this->call('getOobConfirmationCode', array($params), "Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse");
186 }
187 /**
188 * Get token signing public key. (relyingparty.getPublicKeys)
189 *
190 * @param array $optParams Optional parameters.
191 * @return Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse
192 */
193 public function getPublicKeys($optParams = array())
194 {
195 $params = array();
196 $params = array_merge($params, $optParams);
197 return $this->call('getPublicKeys', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse");
198 }
199 /**
200 * Set account info for a user. (relyingparty.resetPassword)
201 *
202 * @param Google_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody
203 * @param array $optParams Optional parameters.
204 * @return Google_Service_IdentityToolkit_ResetPasswordResponse
205 */
206 public function resetPassword(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody, $optParams = array())
207 {
208 $params = array('postBody' => $postBody);
209 $params = array_merge($params, $optParams);
210 return $this->call('resetPassword', array($params), "Google_Service_IdentityToolkit_ResetPasswordResponse");
211 }
212 /**
213 * Set account info for a user. (relyingparty.setAccountInfo)
214 *
215 * @param Google_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody
216 * @param array $optParams Optional parameters.
217 * @return Google_Service_IdentityToolkit_SetAccountInfoResponse
218 */
219 public function setAccountInfo(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody, $optParams = array())
220 {
221 $params = array('postBody' => $postBody);
222 $params = array_merge($params, $optParams);
223 return $this->call('setAccountInfo', array($params), "Google_Service_IdentityToolkit_SetAccountInfoResponse");
224 }
225 /**
226 * Batch upload existing user accounts. (relyingparty.uploadAccount)
227 *
228 * @param Google_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody
229 * @param array $optParams Optional parameters.
230 * @return Google_Service_IdentityToolkit_UploadAccountResponse
231 */
232 public function uploadAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody, $optParams = array())
233 {
234 $params = array('postBody' => $postBody);
235 $params = array_merge($params, $optParams);
236 return $this->call('uploadAccount', array($params), "Google_Service_IdentityToolkit_UploadAccountResponse");
237 }
238 /**
239 * Verifies the assertion returned by the IdP. (relyingparty.verifyAssertion)
240 *
241 * @param Google_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody
242 * @param array $optParams Optional parameters.
243 * @return Google_Service_IdentityToolkit_VerifyAssertionResponse
244 */
245 public function verifyAssertion(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody, $optParams = array())
246 {
247 $params = array('postBody' => $postBody);
248 $params = array_merge($params, $optParams);
249 return $this->call('verifyAssertion', array($params), "Google_Service_IdentityToolkit_VerifyAssertionResponse");
250 }
251 /**
252 * Verifies the user entered password. (relyingparty.verifyPassword)
253 *
254 * @param Google_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody
255 * @param array $optParams Optional parameters.
256 * @return Google_Service_IdentityToolkit_VerifyPasswordResponse
257 */
258 public function verifyPassword(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody, $optParams = array())
259 {
260 $params = array('postBody' => $postBody);
261 $params = array_merge($params, $optParams);
262 return $this->call('verifyPassword', array($params), "Google_Service_IdentityToolkit_VerifyPasswordResponse");
263 }
264 }
265
266
267
268
269 class Google_Service_IdentityToolkit_CreateAuthUriResponse extends Google_Collection
270 {
271 public $authUri;
272 public $kind;
273 public $providerId;
274 public $providers;
275 public $registered;
276
277 public function setAuthUri($authUri)
278 {
279 $this->authUri = $authUri;
280 }
281
282 public function getAuthUri()
283 {
284 return $this->authUri;
285 }
286
287 public function setKind($kind)
288 {
289 $this->kind = $kind;
290 }
291
292 public function getKind()
293 {
294 return $this->kind;
295 }
296
297 public function setProviderId($providerId)
298 {
299 $this->providerId = $providerId;
300 }
301
302 public function getProviderId()
303 {
304 return $this->providerId;
305 }
306
307 public function setProviders($providers)
308 {
309 $this->providers = $providers;
310 }
311
312 public function getProviders()
313 {
314 return $this->providers;
315 }
316
317 public function setRegistered($registered)
318 {
319 $this->registered = $registered;
320 }
321
322 public function getRegistered()
323 {
324 return $this->registered;
325 }
326 }
327
328 class Google_Service_IdentityToolkit_DeleteAccountResponse extends Google_Model
329 {
330 public $kind;
331
332 public function setKind($kind)
333 {
334 $this->kind = $kind;
335 }
336
337 public function getKind()
338 {
339 return $this->kind;
340 }
341 }
342
343 class Google_Service_IdentityToolkit_DownloadAccountResponse extends Google_Collection
344 {
345 public $kind;
346 public $nextPageToken;
347 protected $usersType = 'Google_Service_IdentityToolkit_UserInfo';
348 protected $usersDataType = 'array';
349
350 public function setKind($kind)
351 {
352 $this->kind = $kind;
353 }
354
355 public function getKind()
356 {
357 return $this->kind;
358 }
359
360 public function setNextPageToken($nextPageToken)
361 {
362 $this->nextPageToken = $nextPageToken;
363 }
364
365 public function getNextPageToken()
366 {
367 return $this->nextPageToken;
368 }
369
370 public function setUsers($users)
371 {
372 $this->users = $users;
373 }
374
375 public function getUsers()
376 {
377 return $this->users;
378 }
379 }
380
381 class Google_Service_IdentityToolkit_GetAccountInfoResponse extends Google_Collection
382 {
383 public $kind;
384 protected $usersType = 'Google_Service_IdentityToolkit_UserInfo';
385 protected $usersDataType = 'array';
386
387 public function setKind($kind)
388 {
389 $this->kind = $kind;
390 }
391
392 public function getKind()
393 {
394 return $this->kind;
395 }
396
397 public function setUsers($users)
398 {
399 $this->users = $users;
400 }
401
402 public function getUsers()
403 {
404 return $this->users;
405 }
406 }
407
408 class Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse extends Google_Model
409 {
410 public $kind;
411 public $oobCode;
412
413 public function setKind($kind)
414 {
415 $this->kind = $kind;
416 }
417
418 public function getKind()
419 {
420 return $this->kind;
421 }
422
423 public function setOobCode($oobCode)
424 {
425 $this->oobCode = $oobCode;
426 }
427
428 public function getOobCode()
429 {
430 return $this->oobCode;
431 }
432 }
433
434 class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest extends Google_Model
435 {
436 public $appId;
437 public $clientId;
438 public $context;
439 public $continueUri;
440 public $identifier;
441 public $openidRealm;
442 public $otaApp;
443 public $providerId;
444
445 public function setAppId($appId)
446 {
447 $this->appId = $appId;
448 }
449
450 public function getAppId()
451 {
452 return $this->appId;
453 }
454
455 public function setClientId($clientId)
456 {
457 $this->clientId = $clientId;
458 }
459
460 public function getClientId()
461 {
462 return $this->clientId;
463 }
464
465 public function setContext($context)
466 {
467 $this->context = $context;
468 }
469
470 public function getContext()
471 {
472 return $this->context;
473 }
474
475 public function setContinueUri($continueUri)
476 {
477 $this->continueUri = $continueUri;
478 }
479
480 public function getContinueUri()
481 {
482 return $this->continueUri;
483 }
484
485 public function setIdentifier($identifier)
486 {
487 $this->identifier = $identifier;
488 }
489
490 public function getIdentifier()
491 {
492 return $this->identifier;
493 }
494
495 public function setOpenidRealm($openidRealm)
496 {
497 $this->openidRealm = $openidRealm;
498 }
499
500 public function getOpenidRealm()
501 {
502 return $this->openidRealm;
503 }
504
505 public function setOtaApp($otaApp)
506 {
507 $this->otaApp = $otaApp;
508 }
509
510 public function getOtaApp()
511 {
512 return $this->otaApp;
513 }
514
515 public function setProviderId($providerId)
516 {
517 $this->providerId = $providerId;
518 }
519
520 public function getProviderId()
521 {
522 return $this->providerId;
523 }
524 }
525
526 class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest extends Google_Model
527 {
528 public $localId;
529
530 public function setLocalId($localId)
531 {
532 $this->localId = $localId;
533 }
534
535 public function getLocalId()
536 {
537 return $this->localId;
538 }
539 }
540
541 class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest extends Google_Model
542 {
543 public $maxResults;
544 public $nextPageToken;
545
546 public function setMaxResults($maxResults)
547 {
548 $this->maxResults = $maxResults;
549 }
550
551 public function getMaxResults()
552 {
553 return $this->maxResults;
554 }
555
556 public function setNextPageToken($nextPageToken)
557 {
558 $this->nextPageToken = $nextPageToken;
559 }
560
561 public function getNextPageToken()
562 {
563 return $this->nextPageToken;
564 }
565 }
566
567 class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest extends Google_Collection
568 {
569 public $email;
570 public $idToken;
571 public $localId;
572
573 public function setEmail($email)
574 {
575 $this->email = $email;
576 }
577
578 public function getEmail()
579 {
580 return $this->email;
581 }
582
583 public function setIdToken($idToken)
584 {
585 $this->idToken = $idToken;
586 }
587
588 public function getIdToken()
589 {
590 return $this->idToken;
591 }
592
593 public function setLocalId($localId)
594 {
595 $this->localId = $localId;
596 }
597
598 public function getLocalId()
599 {
600 return $this->localId;
601 }
602 }
603
604 class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest extends Google_Model
605 {
606 public $email;
607 public $newPassword;
608 public $oldPassword;
609 public $oobCode;
610
611 public function setEmail($email)
612 {
613 $this->email = $email;
614 }
615
616 public function getEmail()
617 {
618 return $this->email;
619 }
620
621 public function setNewPassword($newPassword)
622 {
623 $this->newPassword = $newPassword;
624 }
625
626 public function getNewPassword()
627 {
628 return $this->newPassword;
629 }
630
631 public function setOldPassword($oldPassword)
632 {
633 $this->oldPassword = $oldPassword;
634 }
635
636 public function getOldPassword()
637 {
638 return $this->oldPassword;
639 }
640
641 public function setOobCode($oobCode)
642 {
643 $this->oobCode = $oobCode;
644 }
645
646 public function getOobCode()
647 {
648 return $this->oobCode;
649 }
650 }
651
652 class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest extends Google_Collection
653 {
654 public $captchaChallenge;
655 public $captchaResponse;
656 public $displayName;
657 public $email;
658 public $emailVerified;
659 public $idToken;
660 public $localId;
661 public $oobCode;
662 public $password;
663 public $provider;
664 public $upgradeToFederatedLogin;
665
666 public function setCaptchaChallenge($captchaChallenge)
667 {
668 $this->captchaChallenge = $captchaChallenge;
669 }
670
671 public function getCaptchaChallenge()
672 {
673 return $this->captchaChallenge;
674 }
675
676 public function setCaptchaResponse($captchaResponse)
677 {
678 $this->captchaResponse = $captchaResponse;
679 }
680
681 public function getCaptchaResponse()
682 {
683 return $this->captchaResponse;
684 }
685
686 public function setDisplayName($displayName)
687 {
688 $this->displayName = $displayName;
689 }
690
691 public function getDisplayName()
692 {
693 return $this->displayName;
694 }
695
696 public function setEmail($email)
697 {
698 $this->email = $email;
699 }
700
701 public function getEmail()
702 {
703 return $this->email;
704 }
705
706 public function setEmailVerified($emailVerified)
707 {
708 $this->emailVerified = $emailVerified;
709 }
710
711 public function getEmailVerified()
712 {
713 return $this->emailVerified;
714 }
715
716 public function setIdToken($idToken)
717 {
718 $this->idToken = $idToken;
719 }
720
721 public function getIdToken()
722 {
723 return $this->idToken;
724 }
725
726 public function setLocalId($localId)
727 {
728 $this->localId = $localId;
729 }
730
731 public function getLocalId()
732 {
733 return $this->localId;
734 }
735
736 public function setOobCode($oobCode)
737 {
738 $this->oobCode = $oobCode;
739 }
740
741 public function getOobCode()
742 {
743 return $this->oobCode;
744 }
745
746 public function setPassword($password)
747 {
748 $this->password = $password;
749 }
750
751 public function getPassword()
752 {
753 return $this->password;
754 }
755
756 public function setProvider($provider)
757 {
758 $this->provider = $provider;
759 }
760
761 public function getProvider()
762 {
763 return $this->provider;
764 }
765
766 public function setUpgradeToFederatedLogin($upgradeToFederatedLogin)
767 {
768 $this->upgradeToFederatedLogin = $upgradeToFederatedLogin;
769 }
770
771 public function getUpgradeToFederatedLogin()
772 {
773 return $this->upgradeToFederatedLogin;
774 }
775 }
776
777 class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest extends Google_Collection
778 {
779 public $hashAlgorithm;
780 public $memoryCost;
781 public $rounds;
782 public $saltSeparator;
783 public $signerKey;
784 protected $usersType = 'Google_Service_IdentityToolkit_UserInfo';
785 protected $usersDataType = 'array';
786
787 public function setHashAlgorithm($hashAlgorithm)
788 {
789 $this->hashAlgorithm = $hashAlgorithm;
790 }
791
792 public function getHashAlgorithm()
793 {
794 return $this->hashAlgorithm;
795 }
796
797 public function setMemoryCost($memoryCost)
798 {
799 $this->memoryCost = $memoryCost;
800 }
801
802 public function getMemoryCost()
803 {
804 return $this->memoryCost;
805 }
806
807 public function setRounds($rounds)
808 {
809 $this->rounds = $rounds;
810 }
811
812 public function getRounds()
813 {
814 return $this->rounds;
815 }
816
817 public function setSaltSeparator($saltSeparator)
818 {
819 $this->saltSeparator = $saltSeparator;
820 }
821
822 public function getSaltSeparator()
823 {
824 return $this->saltSeparator;
825 }
826
827 public function setSignerKey($signerKey)
828 {
829 $this->signerKey = $signerKey;
830 }
831
832 public function getSignerKey()
833 {
834 return $this->signerKey;
835 }
836
837 public function setUsers($users)
838 {
839 $this->users = $users;
840 }
841
842 public function getUsers()
843 {
844 return $this->users;
845 }
846 }
847
848 class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest extends Google_Model
849 {
850 public $pendingIdToken;
851 public $postBody;
852 public $requestUri;
853
854 public function setPendingIdToken($pendingIdToken)
855 {
856 $this->pendingIdToken = $pendingIdToken;
857 }
858
859 public function getPendingIdToken()
860 {
861 return $this->pendingIdToken;
862 }
863
864 public function setPostBody($postBody)
865 {
866 $this->postBody = $postBody;
867 }
868
869 public function getPostBody()
870 {
871 return $this->postBody;
872 }
873
874 public function setRequestUri($requestUri)
875 {
876 $this->requestUri = $requestUri;
877 }
878
879 public function getRequestUri()
880 {
881 return $this->requestUri;
882 }
883 }
884
885 class Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest extends Google_Model
886 {
887 public $captchaChallenge;
888 public $captchaResponse;
889 public $email;
890 public $password;
891 public $pendingIdToken;
892
893 public function setCaptchaChallenge($captchaChallenge)
894 {
895 $this->captchaChallenge = $captchaChallenge;
896 }
897
898 public function getCaptchaChallenge()
899 {
900 return $this->captchaChallenge;
901 }
902
903 public function setCaptchaResponse($captchaResponse)
904 {
905 $this->captchaResponse = $captchaResponse;
906 }
907
908 public function getCaptchaResponse()
909 {
910 return $this->captchaResponse;
911 }
912
913 public function setEmail($email)
914 {
915 $this->email = $email;
916 }
917
918 public function getEmail()
919 {
920 return $this->email;
921 }
922
923 public function setPassword($password)
924 {
925 $this->password = $password;
926 }
927
928 public function getPassword()
929 {
930 return $this->password;
931 }
932
933 public function setPendingIdToken($pendingIdToken)
934 {
935 $this->pendingIdToken = $pendingIdToken;
936 }
937
938 public function getPendingIdToken()
939 {
940 return $this->pendingIdToken;
941 }
942 }
943
944 class Google_Service_IdentityToolkit_Relyingparty extends Google_Model
945 {
946 public $captchaResp;
947 public $challenge;
948 public $email;
949 public $idToken;
950 public $kind;
951 public $newEmail;
952 public $requestType;
953 public $userIp;
954
955 public function setCaptchaResp($captchaResp)
956 {
957 $this->captchaResp = $captchaResp;
958 }
959
960 public function getCaptchaResp()
961 {
962 return $this->captchaResp;
963 }
964
965 public function setChallenge($challenge)
966 {
967 $this->challenge = $challenge;
968 }
969
970 public function getChallenge()
971 {
972 return $this->challenge;
973 }
974
975 public function setEmail($email)
976 {
977 $this->email = $email;
978 }
979
980 public function getEmail()
981 {
982 return $this->email;
983 }
984
985 public function setIdToken($idToken)
986 {
987 $this->idToken = $idToken;
988 }
989
990 public function getIdToken()
991 {
992 return $this->idToken;
993 }
994
995 public function setKind($kind)
996 {
997 $this->kind = $kind;
998 }
999
1000 public function getKind()
1001 {
1002 return $this->kind;
1003 }
1004
1005 public function setNewEmail($newEmail)
1006 {
1007 $this->newEmail = $newEmail;
1008 }
1009
1010 public function getNewEmail()
1011 {
1012 return $this->newEmail;
1013 }
1014
1015 public function setRequestType($requestType)
1016 {
1017 $this->requestType = $requestType;
1018 }
1019
1020 public function getRequestType()
1021 {
1022 return $this->requestType;
1023 }
1024
1025 public function setUserIp($userIp)
1026 {
1027 $this->userIp = $userIp;
1028 }
1029
1030 public function getUserIp()
1031 {
1032 return $this->userIp;
1033 }
1034 }
1035
1036 class Google_Service_IdentityToolkit_ResetPasswordResponse extends Google_Model
1037 {
1038 public $email;
1039 public $kind;
1040
1041 public function setEmail($email)
1042 {
1043 $this->email = $email;
1044 }
1045
1046 public function getEmail()
1047 {
1048 return $this->email;
1049 }
1050
1051 public function setKind($kind)
1052 {
1053 $this->kind = $kind;
1054 }
1055
1056 public function getKind()
1057 {
1058 return $this->kind;
1059 }
1060 }
1061
1062 class Google_Service_IdentityToolkit_SetAccountInfoResponse extends Google_Collection
1063 {
1064 public $displayName;
1065 public $email;
1066 public $idToken;
1067 public $kind;
1068 protected $providerUserInfoType = 'Google_Service_IdentityToolkit_SetAccountInfoResponseProviderUserInfo';
1069 protected $providerUserInfoDataType = 'array';
1070
1071 public function setDisplayName($displayName)
1072 {
1073 $this->displayName = $displayName;
1074 }
1075
1076 public function getDisplayName()
1077 {
1078 return $this->displayName;
1079 }
1080
1081 public function setEmail($email)
1082 {
1083 $this->email = $email;
1084 }
1085
1086 public function getEmail()
1087 {
1088 return $this->email;
1089 }
1090
1091 public function setIdToken($idToken)
1092 {
1093 $this->idToken = $idToken;
1094 }
1095
1096 public function getIdToken()
1097 {
1098 return $this->idToken;
1099 }
1100
1101 public function setKind($kind)
1102 {
1103 $this->kind = $kind;
1104 }
1105
1106 public function getKind()
1107 {
1108 return $this->kind;
1109 }
1110
1111 public function setProviderUserInfo($providerUserInfo)
1112 {
1113 $this->providerUserInfo = $providerUserInfo;
1114 }
1115
1116 public function getProviderUserInfo()
1117 {
1118 return $this->providerUserInfo;
1119 }
1120 }
1121
1122 class Google_Service_IdentityToolkit_SetAccountInfoResponseProviderUserInfo extends Google_Model
1123 {
1124 public $displayName;
1125 public $photoUrl;
1126 public $providerId;
1127
1128 public function setDisplayName($displayName)
1129 {
1130 $this->displayName = $displayName;
1131 }
1132
1133 public function getDisplayName()
1134 {
1135 return $this->displayName;
1136 }
1137
1138 public function setPhotoUrl($photoUrl)
1139 {
1140 $this->photoUrl = $photoUrl;
1141 }
1142
1143 public function getPhotoUrl()
1144 {
1145 return $this->photoUrl;
1146 }
1147
1148 public function setProviderId($providerId)
1149 {
1150 $this->providerId = $providerId;
1151 }
1152
1153 public function getProviderId()
1154 {
1155 return $this->providerId;
1156 }
1157 }
1158
1159 class Google_Service_IdentityToolkit_UploadAccountResponse extends Google_Collection
1160 {
1161 protected $errorType = 'Google_Service_IdentityToolkit_UploadAccountResponseError';
1162 protected $errorDataType = 'array';
1163 public $kind;
1164
1165 public function setError($error)
1166 {
1167 $this->error = $error;
1168 }
1169
1170 public function getError()
1171 {
1172 return $this->error;
1173 }
1174
1175 public function setKind($kind)
1176 {
1177 $this->kind = $kind;
1178 }
1179
1180 public function getKind()
1181 {
1182 return $this->kind;
1183 }
1184 }
1185
1186 class Google_Service_IdentityToolkit_UploadAccountResponseError extends Google_Model
1187 {
1188 public $index;
1189 public $message;
1190
1191 public function setIndex($index)
1192 {
1193 $this->index = $index;
1194 }
1195
1196 public function getIndex()
1197 {
1198 return $this->index;
1199 }
1200
1201 public function setMessage($message)
1202 {
1203 $this->message = $message;
1204 }
1205
1206 public function getMessage()
1207 {
1208 return $this->message;
1209 }
1210 }
1211
1212 class Google_Service_IdentityToolkit_UserInfo extends Google_Collection
1213 {
1214 public $displayName;
1215 public $email;
1216 public $emailVerified;
1217 public $localId;
1218 public $passwordHash;
1219 public $passwordUpdatedAt;
1220 public $photoUrl;
1221 protected $providerUserInfoType = 'Google_Service_IdentityToolkit_UserInfoProviderUserInfo';
1222 protected $providerUserInfoDataType = 'array';
1223 public $salt;
1224 public $version;
1225
1226 public function setDisplayName($displayName)
1227 {
1228 $this->displayName = $displayName;
1229 }
1230
1231 public function getDisplayName()
1232 {
1233 return $this->displayName;
1234 }
1235
1236 public function setEmail($email)
1237 {
1238 $this->email = $email;
1239 }
1240
1241 public function getEmail()
1242 {
1243 return $this->email;
1244 }
1245
1246 public function setEmailVerified($emailVerified)
1247 {
1248 $this->emailVerified = $emailVerified;
1249 }
1250
1251 public function getEmailVerified()
1252 {
1253 return $this->emailVerified;
1254 }
1255
1256 public function setLocalId($localId)
1257 {
1258 $this->localId = $localId;
1259 }
1260
1261 public function getLocalId()
1262 {
1263 return $this->localId;
1264 }
1265
1266 public function setPasswordHash($passwordHash)
1267 {
1268 $this->passwordHash = $passwordHash;
1269 }
1270
1271 public function getPasswordHash()
1272 {
1273 return $this->passwordHash;
1274 }
1275
1276 public function setPasswordUpdatedAt($passwordUpdatedAt)
1277 {
1278 $this->passwordUpdatedAt = $passwordUpdatedAt;
1279 }
1280
1281 public function getPasswordUpdatedAt()
1282 {
1283 return $this->passwordUpdatedAt;
1284 }
1285
1286 public function setPhotoUrl($photoUrl)
1287 {
1288 $this->photoUrl = $photoUrl;
1289 }
1290
1291 public function getPhotoUrl()
1292 {
1293 return $this->photoUrl;
1294 }
1295
1296 public function setProviderUserInfo($providerUserInfo)
1297 {
1298 $this->providerUserInfo = $providerUserInfo;
1299 }
1300
1301 public function getProviderUserInfo()
1302 {
1303 return $this->providerUserInfo;
1304 }
1305
1306 public function setSalt($salt)
1307 {
1308 $this->salt = $salt;
1309 }
1310
1311 public function getSalt()
1312 {
1313 return $this->salt;
1314 }
1315
1316 public function setVersion($version)
1317 {
1318 $this->version = $version;
1319 }
1320
1321 public function getVersion()
1322 {
1323 return $this->version;
1324 }
1325 }
1326
1327 class Google_Service_IdentityToolkit_UserInfoProviderUserInfo extends Google_Model
1328 {
1329 public $displayName;
1330 public $federatedId;
1331 public $photoUrl;
1332 public $providerId;
1333
1334 public function setDisplayName($displayName)
1335 {
1336 $this->displayName = $displayName;
1337 }
1338
1339 public function getDisplayName()
1340 {
1341 return $this->displayName;
1342 }
1343
1344 public function setFederatedId($federatedId)
1345 {
1346 $this->federatedId = $federatedId;
1347 }
1348
1349 public function getFederatedId()
1350 {
1351 return $this->federatedId;
1352 }
1353
1354 public function setPhotoUrl($photoUrl)
1355 {
1356 $this->photoUrl = $photoUrl;
1357 }
1358
1359 public function getPhotoUrl()
1360 {
1361 return $this->photoUrl;
1362 }
1363
1364 public function setProviderId($providerId)
1365 {
1366 $this->providerId = $providerId;
1367 }
1368
1369 public function getProviderId()
1370 {
1371 return $this->providerId;
1372 }
1373 }
1374
1375 class Google_Service_IdentityToolkit_VerifyAssertionResponse extends Google_Collection
1376 {
1377 public $action;
1378 public $appInstallationUrl;
1379 public $appScheme;
1380 public $context;
1381 public $dateOfBirth;
1382 public $displayName;
1383 public $email;
1384 public $emailRecycled;
1385 public $emailVerified;
1386 public $federatedId;
1387 public $firstName;
1388 public $fullName;
1389 public $idToken;
1390 public $inputEmail;
1391 public $kind;
1392 public $language;
1393 public $lastName;
1394 public $localId;
1395 public $needConfirmation;
1396 public $nickName;
1397 public $oauthRequestToken;
1398 public $oauthScope;
1399 public $originalEmail;
1400 public $photoUrl;
1401 public $providerId;
1402 public $timeZone;
1403 public $verifiedProvider;
1404
1405 public function setAction($action)
1406 {
1407 $this->action = $action;
1408 }
1409
1410 public function getAction()
1411 {
1412 return $this->action;
1413 }
1414
1415 public function setAppInstallationUrl($appInstallationUrl)
1416 {
1417 $this->appInstallationUrl = $appInstallationUrl;
1418 }
1419
1420 public function getAppInstallationUrl()
1421 {
1422 return $this->appInstallationUrl;
1423 }
1424
1425 public function setAppScheme($appScheme)
1426 {
1427 $this->appScheme = $appScheme;
1428 }
1429
1430 public function getAppScheme()
1431 {
1432 return $this->appScheme;
1433 }
1434
1435 public function setContext($context)
1436 {
1437 $this->context = $context;
1438 }
1439
1440 public function getContext()
1441 {
1442 return $this->context;
1443 }
1444
1445 public function setDateOfBirth($dateOfBirth)
1446 {
1447 $this->dateOfBirth = $dateOfBirth;
1448 }
1449
1450 public function getDateOfBirth()
1451 {
1452 return $this->dateOfBirth;
1453 }
1454
1455 public function setDisplayName($displayName)
1456 {
1457 $this->displayName = $displayName;
1458 }
1459
1460 public function getDisplayName()
1461 {
1462 return $this->displayName;
1463 }
1464
1465 public function setEmail($email)
1466 {
1467 $this->email = $email;
1468 }
1469
1470 public function getEmail()
1471 {
1472 return $this->email;
1473 }
1474
1475 public function setEmailRecycled($emailRecycled)
1476 {
1477 $this->emailRecycled = $emailRecycled;
1478 }
1479
1480 public function getEmailRecycled()
1481 {
1482 return $this->emailRecycled;
1483 }
1484
1485 public function setEmailVerified($emailVerified)
1486 {
1487 $this->emailVerified = $emailVerified;
1488 }
1489
1490 public function getEmailVerified()
1491 {
1492 return $this->emailVerified;
1493 }
1494
1495 public function setFederatedId($federatedId)
1496 {
1497 $this->federatedId = $federatedId;
1498 }
1499
1500 public function getFederatedId()
1501 {
1502 return $this->federatedId;
1503 }
1504
1505 public function setFirstName($firstName)
1506 {
1507 $this->firstName = $firstName;
1508 }
1509
1510 public function getFirstName()
1511 {
1512 return $this->firstName;
1513 }
1514
1515 public function setFullName($fullName)
1516 {
1517 $this->fullName = $fullName;
1518 }
1519
1520 public function getFullName()
1521 {
1522 return $this->fullName;
1523 }
1524
1525 public function setIdToken($idToken)
1526 {
1527 $this->idToken = $idToken;
1528 }
1529
1530 public function getIdToken()
1531 {
1532 return $this->idToken;
1533 }
1534
1535 public function setInputEmail($inputEmail)
1536 {
1537 $this->inputEmail = $inputEmail;
1538 }
1539
1540 public function getInputEmail()
1541 {
1542 return $this->inputEmail;
1543 }
1544
1545 public function setKind($kind)
1546 {
1547 $this->kind = $kind;
1548 }
1549
1550 public function getKind()
1551 {
1552 return $this->kind;
1553 }
1554
1555 public function setLanguage($language)
1556 {
1557 $this->language = $language;
1558 }
1559
1560 public function getLanguage()
1561 {
1562 return $this->language;
1563 }
1564
1565 public function setLastName($lastName)
1566 {
1567 $this->lastName = $lastName;
1568 }
1569
1570 public function getLastName()
1571 {
1572 return $this->lastName;
1573 }
1574
1575 public function setLocalId($localId)
1576 {
1577 $this->localId = $localId;
1578 }
1579
1580 public function getLocalId()
1581 {
1582 return $this->localId;
1583 }
1584
1585 public function setNeedConfirmation($needConfirmation)
1586 {
1587 $this->needConfirmation = $needConfirmation;
1588 }
1589
1590 public function getNeedConfirmation()
1591 {
1592 return $this->needConfirmation;
1593 }
1594
1595 public function setNickName($nickName)
1596 {
1597 $this->nickName = $nickName;
1598 }
1599
1600 public function getNickName()
1601 {
1602 return $this->nickName;
1603 }
1604
1605 public function setOauthRequestToken($oauthRequestToken)
1606 {
1607 $this->oauthRequestToken = $oauthRequestToken;
1608 }
1609
1610 public function getOauthRequestToken()
1611 {
1612 return $this->oauthRequestToken;
1613 }
1614
1615 public function setOauthScope($oauthScope)
1616 {
1617 $this->oauthScope = $oauthScope;
1618 }
1619
1620 public function getOauthScope()
1621 {
1622 return $this->oauthScope;
1623 }
1624
1625 public function setOriginalEmail($originalEmail)
1626 {
1627 $this->originalEmail = $originalEmail;
1628 }
1629
1630 public function getOriginalEmail()
1631 {
1632 return $this->originalEmail;
1633 }
1634
1635 public function setPhotoUrl($photoUrl)
1636 {
1637 $this->photoUrl = $photoUrl;
1638 }
1639
1640 public function getPhotoUrl()
1641 {
1642 return $this->photoUrl;
1643 }
1644
1645 public function setProviderId($providerId)
1646 {
1647 $this->providerId = $providerId;
1648 }
1649
1650 public function getProviderId()
1651 {
1652 return $this->providerId;
1653 }
1654
1655 public function setTimeZone($timeZone)
1656 {
1657 $this->timeZone = $timeZone;
1658 }
1659
1660 public function getTimeZone()
1661 {
1662 return $this->timeZone;
1663 }
1664
1665 public function setVerifiedProvider($verifiedProvider)
1666 {
1667 $this->verifiedProvider = $verifiedProvider;
1668 }
1669
1670 public function getVerifiedProvider()
1671 {
1672 return $this->verifiedProvider;
1673 }
1674 }
1675
1676 class Google_Service_IdentityToolkit_VerifyPasswordResponse extends Google_Model
1677 {
1678 public $displayName;
1679 public $email;
1680 public $idToken;
1681 public $kind;
1682 public $localId;
1683 public $photoUrl;
1684 public $registered;
1685
1686 public function setDisplayName($displayName)
1687 {
1688 $this->displayName = $displayName;
1689 }
1690
1691 public function getDisplayName()
1692 {
1693 return $this->displayName;
1694 }
1695
1696 public function setEmail($email)
1697 {
1698 $this->email = $email;
1699 }
1700
1701 public function getEmail()
1702 {
1703 return $this->email;
1704 }
1705
1706 public function setIdToken($idToken)
1707 {
1708 $this->idToken = $idToken;
1709 }
1710
1711 public function getIdToken()
1712 {
1713 return $this->idToken;
1714 }
1715
1716 public function setKind($kind)
1717 {
1718 $this->kind = $kind;
1719 }
1720
1721 public function getKind()
1722 {
1723 return $this->kind;
1724 }
1725
1726 public function setLocalId($localId)
1727 {
1728 $this->localId = $localId;
1729 }
1730
1731 public function getLocalId()
1732 {
1733 return $this->localId;
1734 }
1735
1736 public function setPhotoUrl($photoUrl)
1737 {
1738 $this->photoUrl = $photoUrl;
1739 }
1740
1741 public function getPhotoUrl()
1742 {
1743 return $this->photoUrl;
1744 }
1745
1746 public function setRegistered($registered)
1747 {
1748 $this->registered = $registered;
1749 }
1750
1751 public function getRegistered()
1752 {
1753 return $this->registered;
1754 }
1755 }
1756