class Google::Apis::IdentitytoolkitV3::SetAccountInfoRequest
Request to set the account information.
Attributes
The captcha challenge. Corresponds to the JSON property `captchaChallenge` @return [String]
Response to the captcha. Corresponds to the JSON property `captchaResponse` @return [String]
GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property `delegatedProjectNumber` @return [String]
The attributes users request to delete. Corresponds to the JSON property `deleteAttribute` @return [Array<String>]
The IDPs the user request to delete. Corresponds to the JSON property `deleteProvider` @return [Array<String>]
Whether to disable the user. Corresponds to the JSON property `disableUser` @return [Boolean]
Whether to disable the user. Corresponds to the JSON property `disableUser` @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. Corresponds to the JSON property `emailVerified` @return [Boolean]
Mark the email as verified or not. 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]
The local ID of the user. Corresponds to the JSON property `localId` @return [String]
The out-of-band code of the change email request. Corresponds to the JSON property `oobCode` @return [String]
The new password of the user. Corresponds to the JSON property `password` @return [String]
The photo url of the user. Corresponds to the JSON property `photoUrl` @return [String]
The associated IDPs of the user. Corresponds to the JSON property `provider` @return [Array<String>]
Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]
Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]
Mark the user to upgrade to federated login. Corresponds to the JSON property `upgradeToFederatedLogin` @return [Boolean]
Mark the user to upgrade to federated login. Corresponds to the JSON property `upgradeToFederatedLogin` @return [Boolean]
Timestamp in seconds for valid login token. Corresponds to the JSON property `validSince` @return [String]
Public Class Methods
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 680 def initialize(**args) update!(**args) end
Public Instance Methods
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