Нет описания

Relyingparty.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. class Google_Service_IdentityToolkit_Relyingparty extends Google_Model
  18. {
  19. public $androidInstallApp;
  20. public $androidMinimumVersion;
  21. public $androidPackageName;
  22. public $canHandleCodeInApp;
  23. public $captchaResp;
  24. public $challenge;
  25. public $continueUrl;
  26. public $email;
  27. public $iOSAppStoreId;
  28. public $iOSBundleId;
  29. public $idToken;
  30. public $kind;
  31. public $newEmail;
  32. public $requestType;
  33. public $userIp;
  34. public function setAndroidInstallApp($androidInstallApp)
  35. {
  36. $this->androidInstallApp = $androidInstallApp;
  37. }
  38. public function getAndroidInstallApp()
  39. {
  40. return $this->androidInstallApp;
  41. }
  42. public function setAndroidMinimumVersion($androidMinimumVersion)
  43. {
  44. $this->androidMinimumVersion = $androidMinimumVersion;
  45. }
  46. public function getAndroidMinimumVersion()
  47. {
  48. return $this->androidMinimumVersion;
  49. }
  50. public function setAndroidPackageName($androidPackageName)
  51. {
  52. $this->androidPackageName = $androidPackageName;
  53. }
  54. public function getAndroidPackageName()
  55. {
  56. return $this->androidPackageName;
  57. }
  58. public function setCanHandleCodeInApp($canHandleCodeInApp)
  59. {
  60. $this->canHandleCodeInApp = $canHandleCodeInApp;
  61. }
  62. public function getCanHandleCodeInApp()
  63. {
  64. return $this->canHandleCodeInApp;
  65. }
  66. public function setCaptchaResp($captchaResp)
  67. {
  68. $this->captchaResp = $captchaResp;
  69. }
  70. public function getCaptchaResp()
  71. {
  72. return $this->captchaResp;
  73. }
  74. public function setChallenge($challenge)
  75. {
  76. $this->challenge = $challenge;
  77. }
  78. public function getChallenge()
  79. {
  80. return $this->challenge;
  81. }
  82. public function setContinueUrl($continueUrl)
  83. {
  84. $this->continueUrl = $continueUrl;
  85. }
  86. public function getContinueUrl()
  87. {
  88. return $this->continueUrl;
  89. }
  90. public function setEmail($email)
  91. {
  92. $this->email = $email;
  93. }
  94. public function getEmail()
  95. {
  96. return $this->email;
  97. }
  98. public function setIOSAppStoreId($iOSAppStoreId)
  99. {
  100. $this->iOSAppStoreId = $iOSAppStoreId;
  101. }
  102. public function getIOSAppStoreId()
  103. {
  104. return $this->iOSAppStoreId;
  105. }
  106. public function setIOSBundleId($iOSBundleId)
  107. {
  108. $this->iOSBundleId = $iOSBundleId;
  109. }
  110. public function getIOSBundleId()
  111. {
  112. return $this->iOSBundleId;
  113. }
  114. public function setIdToken($idToken)
  115. {
  116. $this->idToken = $idToken;
  117. }
  118. public function getIdToken()
  119. {
  120. return $this->idToken;
  121. }
  122. public function setKind($kind)
  123. {
  124. $this->kind = $kind;
  125. }
  126. public function getKind()
  127. {
  128. return $this->kind;
  129. }
  130. public function setNewEmail($newEmail)
  131. {
  132. $this->newEmail = $newEmail;
  133. }
  134. public function getNewEmail()
  135. {
  136. return $this->newEmail;
  137. }
  138. public function setRequestType($requestType)
  139. {
  140. $this->requestType = $requestType;
  141. }
  142. public function getRequestType()
  143. {
  144. return $this->requestType;
  145. }
  146. public function setUserIp($userIp)
  147. {
  148. $this->userIp = $userIp;
  149. }
  150. public function getUserIp()
  151. {
  152. return $this->userIp;
  153. }
  154. }