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
| 503 504 505 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 503 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
| 485 486 487 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 485 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
| 490 491 492 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 490 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
| 495 496 497 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 495 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
| 501 502 503 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 501 def target_project_id @target_project_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 508 509 510 511 512 513 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 508 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 |