Class: Google::Apis::IdentitytoolkitV3::DownloadAccountRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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_numberFixnum

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property delegatedProjectNumber

Returns:

  • (Fixnum)


485
486
487
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 485

def delegated_project_number
  @delegated_project_number
end

#max_resultsFixnum

The max number of results to return in the response. Corresponds to the JSON property maxResults

Returns:

  • (Fixnum)


490
491
492
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 490

def max_results
  @max_results
end

#next_page_tokenString

The token for the next page. This should be taken from the previous response. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


495
496
497
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 495

def next_page_token
  @next_page_token
end

#target_project_idString

Specify which project (field value is actually project id) to operate. Only used when provided credential. Corresponds to the JSON property targetProjectId

Returns:

  • (String)


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