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



441
442
443
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 441

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)


423
424
425
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 423

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)


428
429
430
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 428

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)


433
434
435
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 433

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)


439
440
441
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 439

def target_project_id
  @target_project_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



446
447
448
449
450
451
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 446

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