Class: Google::Apis::ChatV1::ListMembershipsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ChatV1::ListMembershipsResponse
 
- Defined in:
- generated/google/apis/chat_v1/classes.rb,
 generated/google/apis/chat_v1/representations.rb,
 generated/google/apis/chat_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #memberships  ⇒ Array<Google::Apis::ChatV1::Membership> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of memberships in the requested (or first) page. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Continuation token to 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. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListMembershipsResponse
Returns a new instance of ListMembershipsResponse
| 462 463 464 | # File 'generated/google/apis/chat_v1/classes.rb', line 462 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#memberships ⇒ Array<Google::Apis::ChatV1::Membership>
List of memberships in the requested (or first) page.
Corresponds to the JSON property memberships
| 454 455 456 | # File 'generated/google/apis/chat_v1/classes.rb', line 454 def memberships @memberships end | 
#next_page_token ⇒ String
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
| 460 461 462 | # File 'generated/google/apis/chat_v1/classes.rb', line 460 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 467 468 469 470 | # File 'generated/google/apis/chat_v1/classes.rb', line 467 def update!(**args) @memberships = args[:memberships] if args.key?(:memberships) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |