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.
2978 2979 2980 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2978 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
2971 2972 2973 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2971 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
2976 2977 2978 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2976 def org_memberships @org_memberships end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2983 2984 2985 2986 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2983 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 |