class Google::Apis::IdentitytoolkitV3::SignupNewUserRequest
Request to signup new user, create anonymous user or anonymous user reauth.
Attributes
The captcha challenge. Corresponds to the JSON property `captchaChallenge` @return [String]
Response to the captcha. Corresponds to the JSON property `captchaResponse` @return [String]
Whether to disable the user. Only can be used by service account. Corresponds to the JSON property `disabled` @return [Boolean]
Whether to disable the user. Only can be used by service account. Corresponds to the JSON property `disabled` @return [Boolean]
The name of the user. Corresponds to the JSON property `displayName` @return [String]
The email of the user. Corresponds to the JSON property `email` @return [String]
Mark the email as verified or not. Only can be used by service account. Corresponds to the JSON property `emailVerified` @return [Boolean]
Mark the email as verified or not. Only can be used by service account. Corresponds to the JSON property `emailVerified` @return [Boolean]
The GITKit token of the authenticated user. Corresponds to the JSON property `idToken` @return [String]
Instance id token of the app. Corresponds to the JSON property `instanceId` @return [String]
Privileged caller can create user with specified user id. Corresponds to the JSON property `localId` @return [String]
The new password of the user. Corresponds to the JSON property `password` @return [String]
Privileged caller can create user with specified phone number. Corresponds to the JSON property `phoneNumber` @return [String]
The photo url of the user. Corresponds to the JSON property `photoUrl` @return [String]
For multi-tenant use cases, in order to construct sign-in URL with the correct IDP parameters, Firebear needs to know which Tenant to retrieve IDP configs from. Corresponds to the JSON property `tenantId` @return [String]
Tenant project number to be used for idp discovery. Corresponds to the JSON property `tenantProjectNumber` @return [Fixnum]
Public Class Methods
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1166 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1171 def update!(**args) @captcha_challenge = args[:captcha_challenge] if args.key?(:captcha_challenge) @captcha_response = args[:captcha_response] if args.key?(:captcha_response) @disabled = args[:disabled] if args.key?(:disabled) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) @email_verified = args[:email_verified] if args.key?(:email_verified) @id_token = args[:id_token] if args.key?(:id_token) @instance_id = args[:instance_id] if args.key?(:instance_id) @local_id = args[:local_id] if args.key?(:local_id) @password = args[:password] if args.key?(:password) @phone_number = args[:phone_number] if args.key?(:phone_number) @photo_url = args[:photo_url] if args.key?(:photo_url) @tenant_id = args[:tenant_id] if args.key?(:tenant_id) @tenant_project_number = args[:tenant_project_number] if args.key?(:tenant_project_number) end