class Google::Apis::VaultV1::ListMattersResponse

Provides the list of matters.

Attributes

matters[RW]

List of matters. Corresponds to the JSON property `matters` @return [Array<Google::Apis::VaultV1::Matter>]

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 1169
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 1174
def update!(**args)
  @matters = args[:matters] if args.key?(:matters)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end