class Google::Apis::IdentitytoolkitV3::DownloadAccountResponse

Respone of downloading accounts in batch.

Attributes

kind[RW]

The fixed string “identitytoolkit#DownloadAccountResponse”. Corresponds to the JSON property `kind` @return [String]

next_page_token[RW]

The next page token. To be used in a subsequent request to return the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

users[RW]

The user accounts data. Corresponds to the JSON property `users` @return [Array<Google::Apis::IdentitytoolkitV3::UserInfo>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 128
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 133
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @users = args[:users] if args.key?(:users)
end