class Google::Apis::IdentitytoolkitV3::SignupNewUserResponse
Response of signing up new user, creating anonymous user or anonymous user reauth.
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#SignupNewUserResponse”. Corresponds to the JSON property `kind` @return [String]
The RP local ID of the user. Corresponds to the JSON property `localId` @return [String]
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 1422 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 1427 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) @local_id = args[:local_id] if args.key?(:local_id) @refresh_token = args[:refresh_token] if args.key?(:refresh_token) end