Class: Google::Apis::IdentitytoolkitV3::DownloadAccountRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::IdentitytoolkitV3::DownloadAccountRequest
 
 
- 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 download user account in batch.
Instance Attribute Summary collapse
- 
  
    
      #delegated_project_number  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
GCP project number of the requesting delegated app.
 - 
  
    
      #max_results  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The max number of results to return in the response.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The token for the next page.
 - 
  
    
      #target_project_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specify which project (field value is actually project id) to operate.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DownloadAccountRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of DownloadAccountRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DownloadAccountRequest
Returns a new instance of DownloadAccountRequest
      517 518 519  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 517 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#delegated_project_number ⇒ Fixnum
GCP project number of the requesting delegated app. Currently only intended
for Firebase V1 migration.
Corresponds to the JSON property delegatedProjectNumber
      499 500 501  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 499 def delegated_project_number @delegated_project_number end  | 
  
#max_results ⇒ Fixnum
The max number of results to return in the response.
Corresponds to the JSON property maxResults
      504 505 506  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 504 def max_results @max_results end  | 
  
#next_page_token ⇒ String
The token for the next page. This should be taken from the previous response.
Corresponds to the JSON property nextPageToken
      509 510 511  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 509 def next_page_token @next_page_token end  | 
  
#target_project_id ⇒ String
Specify which project (field value is actually project id) to operate. Only
used when provided credential.
Corresponds to the JSON property targetProjectId
      515 516 517  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 515 def target_project_id @target_project_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      522 523 524 525 526 527  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 522 def update!(**args) @delegated_project_number = args[:delegated_project_number] if args.key?(:delegated_project_number) @max_results = args[:max_results] if args.key?(:max_results) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @target_project_id = args[:target_project_id] if args.key?(:target_project_id) end  |