Class: Google::Apis::IdentitytoolkitV3::IdentitytoolkitRelyingpartyEmailLinkSigninRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::IdentitytoolkitV3::IdentitytoolkitRelyingpartyEmailLinkSigninRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/identitytoolkit_v3/classes.rb,
 generated/google/apis/identitytoolkit_v3/representations.rb,
 generated/google/apis/identitytoolkit_v3/representations.rb
Overview
Request to sign in with email.
Instance Attribute Summary collapse
- 
  
    
      #email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The email address of the user. 
- 
  
    
      #id_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Token for linking flow. 
- 
  
    
      #oob_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The confirmation code. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ IdentitytoolkitRelyingpartyEmailLinkSigninRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of IdentitytoolkitRelyingpartyEmailLinkSigninRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ IdentitytoolkitRelyingpartyEmailLinkSigninRequest
Returns a new instance of IdentitytoolkitRelyingpartyEmailLinkSigninRequest
| 535 536 537 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 535 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#email ⇒ String
The email address of the user.
Corresponds to the JSON property email
| 523 524 525 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 523 def email @email end | 
#id_token ⇒ String
Token for linking flow.
Corresponds to the JSON property idToken
| 528 529 530 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 528 def id_token @id_token end | 
#oob_code ⇒ String
The confirmation code.
Corresponds to the JSON property oobCode
| 533 534 535 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 533 def oob_code @oob_code end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 540 541 542 543 544 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 540 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 |