Ei kuvausta

IdentitytoolkitRelyingpartySetProjectConfigRequest.php 4.6KB

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_IdentitytoolkitRelyingpartySetProjectConfigRequest extends Google_Collection
  18. {
  19. protected $collection_key = 'idpConfig';
  20. public $allowPasswordUser;
  21. public $apiKey;
  22. public $authorizedDomains;
  23. protected $changeEmailTemplateType = 'Google_Service_IdentityToolkit_EmailTemplate';
  24. protected $changeEmailTemplateDataType = '';
  25. public $delegatedProjectNumber;
  26. public $enableAnonymousUser;
  27. protected $idpConfigType = 'Google_Service_IdentityToolkit_IdpConfig';
  28. protected $idpConfigDataType = 'array';
  29. protected $legacyResetPasswordTemplateType = 'Google_Service_IdentityToolkit_EmailTemplate';
  30. protected $legacyResetPasswordTemplateDataType = '';
  31. protected $resetPasswordTemplateType = 'Google_Service_IdentityToolkit_EmailTemplate';
  32. protected $resetPasswordTemplateDataType = '';
  33. public $useEmailSending;
  34. protected $verifyEmailTemplateType = 'Google_Service_IdentityToolkit_EmailTemplate';
  35. protected $verifyEmailTemplateDataType = '';
  36. public function setAllowPasswordUser($allowPasswordUser)
  37. {
  38. $this->allowPasswordUser = $allowPasswordUser;
  39. }
  40. public function getAllowPasswordUser()
  41. {
  42. return $this->allowPasswordUser;
  43. }
  44. public function setApiKey($apiKey)
  45. {
  46. $this->apiKey = $apiKey;
  47. }
  48. public function getApiKey()
  49. {
  50. return $this->apiKey;
  51. }
  52. public function setAuthorizedDomains($authorizedDomains)
  53. {
  54. $this->authorizedDomains = $authorizedDomains;
  55. }
  56. public function getAuthorizedDomains()
  57. {
  58. return $this->authorizedDomains;
  59. }
  60. /**
  61. * @param Google_Service_IdentityToolkit_EmailTemplate
  62. */
  63. public function setChangeEmailTemplate(Google_Service_IdentityToolkit_EmailTemplate $changeEmailTemplate)
  64. {
  65. $this->changeEmailTemplate = $changeEmailTemplate;
  66. }
  67. /**
  68. * @return Google_Service_IdentityToolkit_EmailTemplate
  69. */
  70. public function getChangeEmailTemplate()
  71. {
  72. return $this->changeEmailTemplate;
  73. }
  74. public function setDelegatedProjectNumber($delegatedProjectNumber)
  75. {
  76. $this->delegatedProjectNumber = $delegatedProjectNumber;
  77. }
  78. public function getDelegatedProjectNumber()
  79. {
  80. return $this->delegatedProjectNumber;
  81. }
  82. public function setEnableAnonymousUser($enableAnonymousUser)
  83. {
  84. $this->enableAnonymousUser = $enableAnonymousUser;
  85. }
  86. public function getEnableAnonymousUser()
  87. {
  88. return $this->enableAnonymousUser;
  89. }
  90. /**
  91. * @param Google_Service_IdentityToolkit_IdpConfig
  92. */
  93. public function setIdpConfig($idpConfig)
  94. {
  95. $this->idpConfig = $idpConfig;
  96. }
  97. /**
  98. * @return Google_Service_IdentityToolkit_IdpConfig
  99. */
  100. public function getIdpConfig()
  101. {
  102. return $this->idpConfig;
  103. }
  104. /**
  105. * @param Google_Service_IdentityToolkit_EmailTemplate
  106. */
  107. public function setLegacyResetPasswordTemplate(Google_Service_IdentityToolkit_EmailTemplate $legacyResetPasswordTemplate)
  108. {
  109. $this->legacyResetPasswordTemplate = $legacyResetPasswordTemplate;
  110. }
  111. /**
  112. * @return Google_Service_IdentityToolkit_EmailTemplate
  113. */
  114. public function getLegacyResetPasswordTemplate()
  115. {
  116. return $this->legacyResetPasswordTemplate;
  117. }
  118. /**
  119. * @param Google_Service_IdentityToolkit_EmailTemplate
  120. */
  121. public function setResetPasswordTemplate(Google_Service_IdentityToolkit_EmailTemplate $resetPasswordTemplate)
  122. {
  123. $this->resetPasswordTemplate = $resetPasswordTemplate;
  124. }
  125. /**
  126. * @return Google_Service_IdentityToolkit_EmailTemplate
  127. */
  128. public function getResetPasswordTemplate()
  129. {
  130. return $this->resetPasswordTemplate;
  131. }
  132. public function setUseEmailSending($useEmailSending)
  133. {
  134. $this->useEmailSending = $useEmailSending;
  135. }
  136. public function getUseEmailSending()
  137. {
  138. return $this->useEmailSending;
  139. }
  140. /**
  141. * @param Google_Service_IdentityToolkit_EmailTemplate
  142. */
  143. public function setVerifyEmailTemplate(Google_Service_IdentityToolkit_EmailTemplate $verifyEmailTemplate)
  144. {
  145. $this->verifyEmailTemplate = $verifyEmailTemplate;
  146. }
  147. /**
  148. * @return Google_Service_IdentityToolkit_EmailTemplate
  149. */
  150. public function getVerifyEmailTemplate()
  151. {
  152. return $this->verifyEmailTemplate;
  153. }
  154. }