📂 File Browser

AgentAI/vendor/google/apiclient-services/src/IdentityToolkit
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 CreateAuthUriResponse.php
▶ Open 📄 View Source
🐘 DeleteAccountResponse.php
▶ Open 📄 View Source
🐘 DownloadAccountResponse.php
▶ Open 📄 View Source
🐘 EmailLinkSigninResponse.php
▶ Open 📄 View Source
🐘 EmailTemplate.php
▶ Open 📄 View Source
🐘 GetAccountInfoResponse.php
▶ Open 📄 View Source
🐘 GetOobConfirmationCodeResponse.php
▶ Open 📄 View Source
🐘 GetRecaptchaParamResponse.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyCreateAuthUriRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyDeleteAccountRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyDownloadAccountRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyEmailLinkSigninRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyGetAccountInfoRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyGetProjectConfigResponse.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyResetPasswordRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartySendVerificationCodeRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartySendVerificationCodeResponse.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartySetAccountInfoRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartySetProjectConfigRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartySetProjectConfigResponse.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartySignOutUserRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartySignOutUserResponse.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartySignupNewUserRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyUploadAccountRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyVerifyAssertionRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyVerifyCustomTokenRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyVerifyPasswordRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest.php
▶ Open 📄 View Source
🐘 IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse.php
▶ Open 📄 View Source
🐘 IdpConfig.php
▶ Open 📄 View Source
🐘 Relyingparty.php
▶ Open 📄 View Source
🐘 ResetPasswordResponse.php
▶ Open 📄 View Source
🐘 SetAccountInfoResponse.php
▶ Open 📄 View Source
🐘 SetAccountInfoResponseProviderUserInfo.php
▶ Open 📄 View Source
🐘 SignupNewUserResponse.php
▶ Open 📄 View Source
🐘 UploadAccountResponse.php
▶ Open 📄 View Source
🐘 UploadAccountResponseError.php
▶ Open 📄 View Source
🐘 UserInfo.php
▶ Open 📄 View Source
🐘 UserInfoProviderUserInfo.php
▶ Open 📄 View Source
🐘 VerifyAssertionResponse.php
▶ Open 📄 View Source
🐘 VerifyCustomTokenResponse.php
▶ Open 📄 View Source
🐘 VerifyPasswordResponse.php
▶ Open 📄 View Source

📄 Source: IdentitytoolkitRelyingpartySetProjectConfigRequest.php

<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\IdentityToolkit;

class IdentitytoolkitRelyingpartySetProjectConfigRequest extends \Google\Collection
{
  protected $collection_key = 'idpConfig';
  /**
   * Whether to allow password user sign in or sign up.
   *
   * @var bool
   */
  public $allowPasswordUser;
  /**
   * Browser API key, needed when making http request to Apiary.
   *
   * @var string
   */
  public $apiKey;
  /**
   * Authorized domains for widget redirect.
   *
   * @var string[]
   */
  public $authorizedDomains;
  protected $changeEmailTemplateType = EmailTemplate::class;
  protected $changeEmailTemplateDataType = '';
  /**
   * GCP project number of the requesting delegated app. Currently only intended
   * for Firebase V1 migration.
   *
   * @var string
   */
  public $delegatedProjectNumber;
  /**
   * Whether to enable anonymous user.
   *
   * @var bool
   */
  public $enableAnonymousUser;
  protected $idpConfigType = IdpConfig::class;
  protected $idpConfigDataType = 'array';
  protected $legacyResetPasswordTemplateType = EmailTemplate::class;
  protected $legacyResetPasswordTemplateDataType = '';
  protected $resetPasswordTemplateType = EmailTemplate::class;
  protected $resetPasswordTemplateDataType = '';
  /**
   * Whether to use email sending provided by Firebear.
   *
   * @var bool
   */
  public $useEmailSending;
  protected $verifyEmailTemplateType = EmailTemplate::class;
  protected $verifyEmailTemplateDataType = '';

  /**
   * Whether to allow password user sign in or sign up.
   *
   * @param bool $allowPasswordUser
   */
  public function setAllowPasswordUser($allowPasswordUser)
  {
    $this->allowPasswordUser = $allowPasswordUser;
  }
  /**
   * @return bool
   */
  public function getAllowPasswordUser()
  {
    return $this->allowPasswordUser;
  }
  /**
   * Browser API key, needed when making http request to Apiary.
   *
   * @param string $apiKey
   */
  public function setApiKey($apiKey)
  {
    $this->apiKey = $apiKey;
  }
  /**
   * @return string
   */
  public function getApiKey()
  {
    return $this->apiKey;
  }
  /**
   * Authorized domains for widget redirect.
   *
   * @param string[] $authorizedDomains
   */
  public function setAuthorizedDomains($authorizedDomains)
  {
    $this->authorizedDomains = $authorizedDomains;
  }
  /**
   * @return string[]
   */
  public function getAuthorizedDomains()
  {
    return $this->authorizedDomains;
  }
  /**
   * Change email template.
   *
   * @param EmailTemplate $changeEmailTemplate
   */
  public function setChangeEmailTemplate(EmailTemplate $changeEmailTemplate)
  {
    $this->changeEmailTemplate = $changeEmailTemplate;
  }
  /**
   * @return EmailTemplate
   */
  public function getChangeEmailTemplate()
  {
    return $this->changeEmailTemplate;
  }
  /**
   * GCP project number of the requesting delegated app. Currently only intended
   * for Firebase V1 migration.
   *
   * @param string $delegatedProjectNumber
   */
  public function setDelegatedProjectNumber($delegatedProjectNumber)
  {
    $this->delegatedProjectNumber = $delegatedProjectNumber;
  }
  /**
   * @return string
   */
  public function getDelegatedProjectNumber()
  {
    return $this->delegatedProjectNumber;
  }
  /**
   * Whether to enable anonymous user.
   *
   * @param bool $enableAnonymousUser
   */
  public function setEnableAnonymousUser($enableAnonymousUser)
  {
    $this->enableAnonymousUser = $enableAnonymousUser;
  }
  /**
   * @return bool
   */
  public function getEnableAnonymousUser()
  {
    return $this->enableAnonymousUser;
  }
  /**
   * Oauth2 provider configuration.
   *
   * @param IdpConfig[] $idpConfig
   */
  public function setIdpConfig($idpConfig)
  {
    $this->idpConfig = $idpConfig;
  }
  /**
   * @return IdpConfig[]
   */
  public function getIdpConfig()
  {
    return $this->idpConfig;
  }
  /**
   * Legacy reset password email template.
   *
   * @param EmailTemplate $legacyResetPasswordTemplate
   */
  public function setLegacyResetPasswordTemplate(EmailTemplate $legacyResetPasswordTemplate)
  {
    $this->legacyResetPasswordTemplate = $legacyResetPasswordTemplate;
  }
  /**
   * @return EmailTemplate
   */
  public function getLegacyResetPasswordTemplate()
  {
    return $this->legacyResetPasswordTemplate;
  }
  /**
   * Reset password email template.
   *
   * @param EmailTemplate $resetPasswordTemplate
   */
  public function setResetPasswordTemplate(EmailTemplate $resetPasswordTemplate)
  {
    $this->resetPasswordTemplate = $resetPasswordTemplate;
  }
  /**
   * @return EmailTemplate
   */
  public function getResetPasswordTemplate()
  {
    return $this->resetPasswordTemplate;
  }
  /**
   * Whether to use email sending provided by Firebear.
   *
   * @param bool $useEmailSending
   */
  public function setUseEmailSending($useEmailSending)
  {
    $this->useEmailSending = $useEmailSending;
  }
  /**
   * @return bool
   */
  public function getUseEmailSending()
  {
    return $this->useEmailSending;
  }
  /**
   * Verify email template.
   *
   * @param EmailTemplate $verifyEmailTemplate
   */
  public function setVerifyEmailTemplate(EmailTemplate $verifyEmailTemplate)
  {
    $this->verifyEmailTemplate = $verifyEmailTemplate;
  }
  /**
   * @return EmailTemplate
   */
  public function getVerifyEmailTemplate()
  {
    return $this->verifyEmailTemplate;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(IdentitytoolkitRelyingpartySetProjectConfigRequest::class, 'Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetProjectConfigRequest');
← Back