class Google::Apis::IdentitytoolkitV3::GetProjectConfigResponse
Response of getting the project configuration.
Attributes
Whether to allow password user sign in or sign up. Corresponds to the JSON property `allowPasswordUser` @return [Boolean]
Whether to allow password user sign in or sign up. Corresponds to the JSON property `allowPasswordUser` @return [Boolean]
Browser API key, needed when making http request to Apiary. Corresponds to the JSON property `apiKey` @return [String]
Template for an email template. Corresponds to the JSON property `changeEmailTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]
Corresponds to the JSON property `dynamicLinksDomain` @return [String]
Whether anonymous user is enabled. Corresponds to the JSON property `enableAnonymousUser` @return [Boolean]
Whether anonymous user is enabled. Corresponds to the JSON property `enableAnonymousUser` @return [Boolean]
OAuth2 provider configuration. Corresponds to the JSON property `idpConfig` @return [Array<Google::Apis::IdentitytoolkitV3::IdpConfig>]
Template for an email template. Corresponds to the JSON property `legacyResetPasswordTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]
Project ID of the relying party. Corresponds to the JSON property `projectId` @return [String]
Template for an email template. Corresponds to the JSON property `resetPasswordTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]
Whether to use email sending provided by Firebear. Corresponds to the JSON property `useEmailSending` @return [Boolean]
Whether to use email sending provided by Firebear. Corresponds to the JSON property `useEmailSending` @return [Boolean]
Template for an email template. Corresponds to the JSON property `verifyEmailTemplate` @return [Google::Apis::IdentitytoolkitV3::EmailTemplate]
Public Class Methods
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 672 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 677 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) @dynamic_links_domain = args[:dynamic_links_domain] if args.key?(:dynamic_links_domain) @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