class Google::Apis::ChatV1::ListMembershipsResponse
Attributes
memberships[RW]
List of memberships in the requested (or first) page. Corresponds to the JSON property `memberships` @return [Array<Google::Apis::ChatV1::Membership>]
next_page_token[RW]
Continuation token to retrieve the next page of results. It will be empty for the last page of results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/chat_v1/classes.rb, line 2274 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/chat_v1/classes.rb, line 2279 def update!(**args) @memberships = args[:memberships] if args.key?(:memberships) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end