class Google::Apis::IdentitytoolkitV3::SetAccountInfoResponse
Respone of setting the account information.
Attributes
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]
If idToken is STS id token, then this field will be expiration time of STS id token in seconds. Corresponds to the JSON property `expiresIn` @return [String]
The Gitkit id token to login the newly sign up user. Corresponds to the JSON property `idToken` @return [String]
The fixed string “identitytoolkit#SetAccountInfoResponse”. Corresponds to the JSON property `kind` @return [String]
The new email the user attempts to change to. Corresponds to the JSON property `newEmail` @return [String]
The user's hashed password. Corresponds to the JSON property `passwordHash` @return [String]
The photo url of the user. Corresponds to the JSON property `photoUrl` @return [String]
The user's profiles at the associated IdPs. Corresponds to the JSON property `providerUserInfo` @return [Array<Google::Apis::IdentitytoolkitV3::SetAccountInfoResponse::ProviderUserInfo>]
If idToken is STS id token, then this field will be refresh token. Corresponds to the JSON property `refreshToken` @return [String]
Public Class Methods
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 1330 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 1335 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) @expires_in = args[:expires_in] if args.key?(:expires_in) @id_token = args[:id_token] if args.key?(:id_token) @kind = args[:kind] if args.key?(:kind) @new_email = args[:new_email] if args.key?(:new_email) @password_hash = args[:password_hash] if args.key?(:password_hash) @photo_url = args[:photo_url] if args.key?(:photo_url) @provider_user_info = args[:provider_user_info] if args.key?(:provider_user_info) @refresh_token = args[:refresh_token] if args.key?(:refresh_token) end