Class: Google::Apis::VaultV1::ListMattersResponse

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

Provides the list of matters.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListMattersResponse

Returns a new instance of ListMattersResponse.



1163
1164
1165
# File 'lib/google/apis/vault_v1/classes.rb', line 1163

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

Instance Attribute Details

#mattersArray<Google::Apis::VaultV1::Matter>

List of matters. Corresponds to the JSON property matters

Returns:



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

def matters
  @matters
end

#next_page_tokenString

Page token to retrieve the next page of results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1161
1162
1163
# File 'lib/google/apis/vault_v1/classes.rb', line 1161

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1168
1169
1170
1171
# File 'lib/google/apis/vault_v1/classes.rb', line 1168

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