Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1DownloadAccountResponse
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1DownloadAccountResponse
- 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
-
#kind ⇒ String
Corresponds to the JSON property
kind
. -
#next_page_token ⇒ String
If there are more accounts to be downloaded, a token that can be passed back to DownloadAccount to get more accounts.
-
#users ⇒ Array<Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1UserInfo>
All accounts belonging to the project/tenant limited by max_results in the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1DownloadAccountResponse
constructor
A new instance of GoogleCloudIdentitytoolkitV1DownloadAccountResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#kind ⇒ String
Corresponds to the JSON property kind
523 524 525 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 523 def kind @kind end |
#next_page_token ⇒ String
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
529 530 531 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 529 def next_page_token @next_page_token end |
#users ⇒ Array<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 |