Class: Google::Apis::ChatV1::ListMembershipsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::ListMembershipsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb
Instance Attribute Summary collapse
-
#memberships ⇒ Array<Google::Apis::ChatV1::Membership>
Unordered list.
-
#next_page_token ⇒ String
A token that you can send as
pageTokento retrieve the next page of results.
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.
3261 3262 3263 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3261 def initialize(**args) update!(**args) end |
Instance Attribute Details
#memberships ⇒ Array<Google::Apis::ChatV1::Membership>
Unordered list. List of memberships in the requested (or first) page.
Corresponds to the JSON property memberships
3253 3254 3255 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3253 def memberships @memberships end |
#next_page_token ⇒ String
A token that you can send as pageToken to retrieve the next page of results.
If empty, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
3259 3260 3261 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3259 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3266 3267 3268 3269 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3266 def update!(**args) @memberships = args[:memberships] if args.key?(:memberships) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |