Class: Google::Apis::VaultV1::ListHoldsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/vault_v1/classes.rb,
lib/google/apis/vault_v1/representations.rb,
lib/google/apis/vault_v1/representations.rb

Overview

The holds for a matter.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListHoldsResponse

Returns a new instance of ListHoldsResponse.



1152
1153
1154
# File 'lib/google/apis/vault_v1/classes.rb', line 1152

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

Instance Attribute Details

#holdsArray<Google::Apis::VaultV1::Hold>

The list of holds. Corresponds to the JSON property holds

Returns:



1144
1145
1146
# File 'lib/google/apis/vault_v1/classes.rb', line 1144

def holds
  @holds
end

#next_page_tokenString

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

Returns:

  • (String)


1150
1151
1152
# File 'lib/google/apis/vault_v1/classes.rb', line 1150

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1157
1158
1159
1160
# File 'lib/google/apis/vault_v1/classes.rb', line 1157

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