Class: Google::Apis::CloudidentityV1::ListMembershipsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::ListMembershipsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/representations.rb
Overview
The response message for MembershipsService.ListMemberships.
Instance Attribute Summary collapse
-
#memberships ⇒ Array<Google::Apis::CloudidentityV1::Membership>
The
Membership
s under the specifiedparent
. -
#next_page_token ⇒ String
A continuation token to retrieve the next page of results, or empty if there are no more results available.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListMembershipsResponse
constructor
A new instance of ListMembershipsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListMembershipsResponse
Returns a new instance of ListMembershipsResponse.
1451 1452 1453 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1451 def initialize(**args) update!(**args) end |
Instance Attribute Details
#memberships ⇒ Array<Google::Apis::CloudidentityV1::Membership>
The Membership
s under the specified parent
.
Corresponds to the JSON property memberships
1443 1444 1445 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1443 def memberships @memberships end |
#next_page_token ⇒ String
A continuation token to retrieve the next page of results, or empty if there
are no more results available.
Corresponds to the JSON property nextPageToken
1449 1450 1451 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1449 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1456 1457 1458 1459 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1456 def update!(**args) @memberships = args[:memberships] if args.key?(:memberships) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |