class Google::Apis::IdentitytoolkitV3::DownloadAccountRequest

Request to download user account in batch.

Attributes

delegated_project_number[RW]

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property `delegatedProjectNumber` @return [Fixnum]

max_results[RW]

The max number of results to return in the response. Corresponds to the JSON property `maxResults` @return [Fixnum]

next_page_token[RW]

The token for the next page. This should be taken from the previous response. Corresponds to the JSON property `nextPageToken` @return [String]

target_project_id[RW]

Specify which project (field value is actually project id) to operate. Only used when provided credential. Corresponds to the JSON property `targetProjectId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 517
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/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