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 [String]

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]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/identitytoolkit_v3/classes.rb, line 412
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)
end