Class: Google::Apis::VaultV1::ListHoldsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::VaultV1::ListHoldsResponse
 
- 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
The holds for a matter.
Instance Attribute Summary collapse
- 
  
    
      #holds  ⇒ Array<Google::Apis::VaultV1::Hold> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of holds. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Page token to retrieve the next page of results in the list. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListHoldsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListHoldsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListHoldsResponse
Returns a new instance of ListHoldsResponse
| 406 407 408 | # File 'generated/google/apis/vault_v1/classes.rb', line 406 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#holds ⇒ Array<Google::Apis::VaultV1::Hold>
The list of holds.
Corresponds to the JSON property holds
| 398 399 400 | # File 'generated/google/apis/vault_v1/classes.rb', line 398 def holds @holds end | 
#next_page_token ⇒ String
Page token to retrieve the next page of results in the list.
If this is empty, then there are no more holds to list.
Corresponds to the JSON property nextPageToken
| 404 405 406 | # File 'generated/google/apis/vault_v1/classes.rb', line 404 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 411 412 413 414 | # File 'generated/google/apis/vault_v1/classes.rb', line 411 def update!(**args) @holds = args[:holds] if args.key?(:holds) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |