class Google::Apis::IdentitytoolkitV3::IdentitytoolkitRelyingpartyEmailLinkSigninRequest

Request to sign in with email.

Attributes

email[RW]

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

id_token[RW]

Token for linking flow. Corresponds to the JSON property `idToken` @return [String]

oob_code[RW]

The confirmation code. Corresponds to the JSON property `oobCode` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 549
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 554
def update!(**args)
  @email = args[:email] if args.key?(:email)
  @id_token = args[:id_token] if args.key?(:id_token)
  @oob_code = args[:oob_code] if args.key?(:oob_code)
end