Class: Google::Apis::IdentitytoolkitV3::DownloadAccountResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::IdentitytoolkitV3::DownloadAccountResponse
 
- 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 downloading accounts in batch.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The fixed string "identitytoolkit#DownloadAccountResponse". 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The next page token. 
- 
  
    
      #users  ⇒ Array<Google::Apis::IdentitytoolkitV3::UserInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user accounts data. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DownloadAccountResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DownloadAccountResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DownloadAccountResponse
Returns a new instance of DownloadAccountResponse
| 134 135 136 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 134 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
The fixed string "identitytoolkit#DownloadAccountResponse".
Corresponds to the JSON property kind
| 121 122 123 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 121 def kind @kind end | 
#next_page_token ⇒ String
The next page token. To be used in a subsequent request to return the next
page of results.
Corresponds to the JSON property nextPageToken
| 127 128 129 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 127 def next_page_token @next_page_token end | 
#users ⇒ Array<Google::Apis::IdentitytoolkitV3::UserInfo>
The user accounts data.
Corresponds to the JSON property users
| 132 133 134 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 132 def users @users end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 139 140 141 142 143 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 139 def update!(**args) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @users = args[:users] if args.key?(:users) end |