Class: Google::Apis::IdentitytoolkitV3::GetAccountInfoResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::IdentitytoolkitV3::GetAccountInfoResponse
 
- 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
Response of getting account information.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The fixed string "identitytoolkit#GetAccountInfoResponse". 
- 
  
    
      #users  ⇒ Array<Google::Apis::IdentitytoolkitV3::UserInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The info of the users. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GetAccountInfoResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GetAccountInfoResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GetAccountInfoResponse
Returns a new instance of GetAccountInfoResponse
| 265 266 267 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 265 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
The fixed string "identitytoolkit#GetAccountInfoResponse".
Corresponds to the JSON property kind
| 258 259 260 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 258 def kind @kind end | 
#users ⇒ Array<Google::Apis::IdentitytoolkitV3::UserInfo>
The info of the users.
Corresponds to the JSON property users
| 263 264 265 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 263 def users @users end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 270 271 272 273 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 270 def update!(**args) @kind = args[:kind] if args.key?(:kind) @users = args[:users] if args.key?(:users) end |