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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListMembershipsResponse

Returns a new instance of ListMembershipsResponse.



3130
3131
3132
# File 'lib/google/apis/chat_v1/classes.rb', line 3130

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



3122
3123
3124
# File 'lib/google/apis/chat_v1/classes.rb', line 3122

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)


3128
3129
3130
# File 'lib/google/apis/chat_v1/classes.rb', line 3128

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3135
3136
3137
3138
# File 'lib/google/apis/chat_v1/classes.rb', line 3135

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