Class: Google::Apis::VaultV1::ListMattersResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::VaultV1::ListMattersResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vault_v1/classes.rb,
 generated/google/apis/vault_v1/representations.rb,
 generated/google/apis/vault_v1/representations.rb
Overview
Provides the list of matters.
Instance Attribute Summary collapse
- 
  
    
      #matters  ⇒ Array<Google::Apis::VaultV1::Matter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of matters. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Page token to retrieve the next page of results in the list. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListMattersResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListMattersResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListMattersResponse
Returns a new instance of ListMattersResponse
| 431 432 433 | # File 'generated/google/apis/vault_v1/classes.rb', line 431 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#matters ⇒ Array<Google::Apis::VaultV1::Matter>
List of matters.
Corresponds to the JSON property matters
| 424 425 426 | # File 'generated/google/apis/vault_v1/classes.rb', line 424 def matters @matters end | 
#next_page_token ⇒ String
Page token to retrieve the next page of results in the list.
Corresponds to the JSON property nextPageToken
| 429 430 431 | # File 'generated/google/apis/vault_v1/classes.rb', line 429 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 436 437 438 439 | # File 'generated/google/apis/vault_v1/classes.rb', line 436 def update!(**args) @matters = args[:matters] if args.key?(:matters) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |