class Google::Apis::VaultV1::ListHoldsResponse

The holds for a matter.

Attributes

holds[RW]

The list of holds. Corresponds to the JSON property `holds` @return [Array<Google::Apis::VaultV1::Hold>]

next_page_token[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 1144
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vault_v1/classes.rb, line 1149
def update!(**args)
  @holds = args[:holds] if args.key?(:holds)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end