Class: Google::Apis::IdentitytoolkitV3::SignOutUserRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::IdentitytoolkitV3::SignOutUserRequest
 
- 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 out user.
Instance Attribute Summary collapse
- 
  
    
      #instance_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Instance id token of the app. 
- 
  
    
      #local_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The local ID of the user. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SignOutUserRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SignOutUserRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SignOutUserRequest
Returns a new instance of SignOutUserRequest
| 1044 1045 1046 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1044 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#instance_id ⇒ String
Instance id token of the app.
Corresponds to the JSON property instanceId
| 1037 1038 1039 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1037 def instance_id @instance_id end | 
#local_id ⇒ String
The local ID of the user.
Corresponds to the JSON property localId
| 1042 1043 1044 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1042 def local_id @local_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1049 1050 1051 1052 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1049 def update!(**args) @instance_id = args[:instance_id] if args.key?(:instance_id) @local_id = args[:local_id] if args.key?(:local_id) end |