class Google::Apis::IdentitytoolkitV3::SetAccountInfoRequest

Request to set the account information.

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]

delegated_project_number[RW]

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property `delegatedProjectNumber` @return [String]

delete_attribute[RW]

The attributes users request to delete. Corresponds to the JSON property `deleteAttribute` @return [Array<String>]

delete_provider[RW]

The IDPs the user request to delete. Corresponds to the JSON property `deleteProvider` @return [Array<String>]

disable_user[RW]

Whether to disable the user. Corresponds to the JSON property `disableUser` @return [Boolean]

disable_user?[RW]

Whether to disable the user. Corresponds to the JSON property `disableUser` @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. Corresponds to the JSON property `emailVerified` @return [Boolean]

email_verified?[RW]

Mark the email as verified or not. 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]

The local ID of the user. Corresponds to the JSON property `localId` @return [String]

oob_code[RW]

The out-of-band code of the change email request. Corresponds to the JSON property `oobCode` @return [String]

password[RW]

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

photo_url[RW]

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

provider[RW]

The associated IDPs of the user. Corresponds to the JSON property `provider` @return [Array<String>]

return_secure_token[RW]

Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]

return_secure_token?[RW]

Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]

upgrade_to_federated_login[RW]

Mark the user to upgrade to federated login. Corresponds to the JSON property `upgradeToFederatedLogin` @return [Boolean]

upgrade_to_federated_login?[RW]

Mark the user to upgrade to federated login. Corresponds to the JSON property `upgradeToFederatedLogin` @return [Boolean]

valid_since[RW]

Timestamp in seconds for valid login token. Corresponds to the JSON property `validSince` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 680
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 685
def update!(**args)
  @captcha_challenge = args[:captcha_challenge] if args.key?(:captcha_challenge)
  @captcha_response = args[:captcha_response] if args.key?(:captcha_response)
  @delegated_project_number = args[:delegated_project_number] if args.key?(:delegated_project_number)
  @delete_attribute = args[:delete_attribute] if args.key?(:delete_attribute)
  @delete_provider = args[:delete_provider] if args.key?(:delete_provider)
  @disable_user = args[:disable_user] if args.key?(:disable_user)
  @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)
  @oob_code = args[:oob_code] if args.key?(:oob_code)
  @password = args[:password] if args.key?(:password)
  @photo_url = args[:photo_url] if args.key?(:photo_url)
  @provider = args[:provider] if args.key?(:provider)
  @return_secure_token = args[:return_secure_token] if args.key?(:return_secure_token)
  @upgrade_to_federated_login = args[:upgrade_to_federated_login] if args.key?(:upgrade_to_federated_login)
  @valid_since = args[:valid_since] if args.key?(:valid_since)
end