Class: Google::Apis::CloudidentityV1beta1::ListOrgMembershipsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::ListOrgMembershipsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
The response message for OrgMembershipsService.ListOrgMemberships.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#org_memberships ⇒ Array<Google::Apis::CloudidentityV1beta1::OrgMembership>
The non-vacuous membership in an orgUnit.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListOrgMembershipsResponse
constructor
A new instance of ListOrgMembershipsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListOrgMembershipsResponse
Returns a new instance of ListOrgMembershipsResponse.
2994 2995 2996 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2994 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is empty, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
2987 2988 2989 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2987 def next_page_token @next_page_token end |
#org_memberships ⇒ Array<Google::Apis::CloudidentityV1beta1::OrgMembership>
The non-vacuous membership in an orgUnit.
Corresponds to the JSON property orgMemberships
2992 2993 2994 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2992 def org_memberships @org_memberships end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2999 3000 3001 3002 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2999 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @org_memberships = args[:org_memberships] if args.key?(:org_memberships) end |