Class: Google::Apis::ChatV1::ListMembershipsResponse

Inherits:
Object
  • Object
show all
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

Overview

Response to list memberships of the space.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListMembershipsResponse

Returns a new instance of ListMembershipsResponse.



4585
4586
4587
# File 'lib/google/apis/chat_v1/classes.rb', line 4585

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#membershipsArray<Google::Apis::ChatV1::Membership>

Unordered list. List of memberships in the requested (or first) page. Corresponds to the JSON property memberships



4577
4578
4579
# File 'lib/google/apis/chat_v1/classes.rb', line 4577

def memberships
  @memberships
end

#next_page_tokenString

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

Returns:

  • (String)


4583
4584
4585
# File 'lib/google/apis/chat_v1/classes.rb', line 4583

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4590
4591
4592
4593
# File 'lib/google/apis/chat_v1/classes.rb', line 4590

def update!(**args)
  @memberships = args[:memberships] if args.key?(:memberships)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end