class Google::Apis::VaultV1::ListExportsResponse

The exports for a matter.

Attributes

exports[RW]

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

next_page_token[RW]

Page token to retrieve the next page of results in the 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 1099
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 1104
def update!(**args)
  @exports = args[:exports] if args.key?(:exports)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end