Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1DownloadAccountResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/identitytoolkit_v1/classes.rb,
lib/google/apis/identitytoolkit_v1/representations.rb,
lib/google/apis/identitytoolkit_v1/representations.rb

Overview

Response message for DownloadAccount.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1DownloadAccountResponse

Returns a new instance of GoogleCloudIdentitytoolkitV1DownloadAccountResponse.



537
538
539
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 537

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

Corresponds to the JSON property kind

Returns:

  • (String)


523
524
525
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 523

def kind
  @kind
end

#next_page_tokenString

If there are more accounts to be downloaded, a token that can be passed back to DownloadAccount to get more accounts. Otherwise, this is blank. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


529
530
531
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 529

def next_page_token
  @next_page_token
end

#usersArray<Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1UserInfo>

All accounts belonging to the project/tenant limited by max_results in the request. Corresponds to the JSON property users



535
536
537
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 535

def users
  @users
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



542
543
544
545
546
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 542

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