class Google::Apis::IdentitytoolkitV3::GetProjectConfigResponse

Response of getting the project configuration.

Attributes

allow_password_user[RW]

Whether to allow password user sign in or sign up. Corresponds to the JSON property `allowPasswordUser` @return [Boolean]

allow_password_user?[RW]

Whether to allow password user sign in or sign up. Corresponds to the JSON property `allowPasswordUser` @return [Boolean]

api_key[RW]

Browser API key, needed when making http request to Apiary. Corresponds to the JSON property `apiKey` @return [String]

authorized_domains[RW]

Authorized domains. Corresponds to the JSON property `authorizedDomains` @return [Array<String>]

change_email_template[RW]

Template for an email template. Corresponds to the JSON property `changeEmailTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]

enable_anonymous_user[RW]

Whether anonymous user is enabled. Corresponds to the JSON property `enableAnonymousUser` @return [Boolean]

enable_anonymous_user?[RW]

Whether anonymous user is enabled. Corresponds to the JSON property `enableAnonymousUser` @return [Boolean]

idp_config[RW]

OAuth2 provider configuration. Corresponds to the JSON property `idpConfig` @return [Array<Google::Apis::IdentitytoolkitV3::IdpConfig>]

legacy_reset_password_template[RW]

Template for an email template. Corresponds to the JSON property `legacyResetPasswordTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]

project_id[RW]

Project ID of the relying party. Corresponds to the JSON property `projectId` @return [String]

reset_password_template[RW]

Template for an email template. Corresponds to the JSON property `resetPasswordTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]

use_email_sending[RW]

Whether to use email sending provided by Firebear. Corresponds to the JSON property `useEmailSending` @return [Boolean]

use_email_sending?[RW]

Whether to use email sending provided by Firebear. Corresponds to the JSON property `useEmailSending` @return [Boolean]

verify_email_template[RW]

Template for an email template. Corresponds to the JSON property `verifyEmailTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 519
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/identitytoolkit_v3/classes.rb, line 524
def update!(**args)
  @allow_password_user = args[:allow_password_user] if args.key?(:allow_password_user)
  @api_key = args[:api_key] if args.key?(:api_key)
  @authorized_domains = args[:authorized_domains] if args.key?(:authorized_domains)
  @change_email_template = args[:change_email_template] if args.key?(:change_email_template)
  @enable_anonymous_user = args[:enable_anonymous_user] if args.key?(:enable_anonymous_user)
  @idp_config = args[:idp_config] if args.key?(:idp_config)
  @legacy_reset_password_template = args[:legacy_reset_password_template] if args.key?(:legacy_reset_password_template)
  @project_id = args[:project_id] if args.key?(:project_id)
  @reset_password_template = args[:reset_password_template] if args.key?(:reset_password_template)
  @use_email_sending = args[:use_email_sending] if args.key?(:use_email_sending)
  @verify_email_template = args[:verify_email_template] if args.key?(:verify_email_template)
end