class Google::Apis::IdentitytoolkitV3::SignupNewUserRequest

Request to signup new user, create anonymous user or anonymous user reauth.

Attributes

captcha_challenge[RW]

The captcha challenge. Corresponds to the JSON property `captchaChallenge` @return [String]

captcha_response[RW]

Response to the captcha. Corresponds to the JSON property `captchaResponse` @return [String]

disabled[RW]

Whether to disable the user. Only can be used by service account. Corresponds to the JSON property `disabled` @return [Boolean]

disabled?[RW]

Whether to disable the user. Only can be used by service account. Corresponds to the JSON property `disabled` @return [Boolean]

display_name[RW]

The name of the user. Corresponds to the JSON property `displayName` @return [String]

email[RW]

The email of the user. Corresponds to the JSON property `email` @return [String]

email_verified[RW]

Mark the email as verified or not. Only can be used by service account. Corresponds to the JSON property `emailVerified` @return [Boolean]

email_verified?[RW]

Mark the email as verified or not. Only can be used by service account. Corresponds to the JSON property `emailVerified` @return [Boolean]

id_token[RW]

The GITKit token of the authenticated user. Corresponds to the JSON property `idToken` @return [String]

instance_id[RW]

Instance id token of the app. Corresponds to the JSON property `instanceId` @return [String]

local_id[RW]

Privileged caller can create user with specified user id. Corresponds to the JSON property `localId` @return [String]

password[RW]

The new password of the user. Corresponds to the JSON property `password` @return [String]

phone_number[RW]

Privileged caller can create user with specified phone number. Corresponds to the JSON property `phoneNumber` @return [String]

photo_url[RW]

The photo url of the user. Corresponds to the JSON property `photoUrl` @return [String]

tenant_id[RW]

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[RW]

Tenant project number to be used for idp discovery. Corresponds to the JSON property `tenantProjectNumber` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

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