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.



2373
2374
2375
# File 'lib/google/apis/chat_v1/classes.rb', line 2373

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

Instance Attribute Details

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

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



2365
2366
2367
# File 'lib/google/apis/chat_v1/classes.rb', line 2365

def memberships
  @memberships
end

#next_page_tokenString

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

Returns:

  • (String)


2371
2372
2373
# File 'lib/google/apis/chat_v1/classes.rb', line 2371

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2378
2379
2380
2381
# File 'lib/google/apis/chat_v1/classes.rb', line 2378

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