Class: Google::Apis::CesV1::ListToolsetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::ListToolsetsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
Response message for AgentService.ListToolsets.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as ListToolsetsRequest.page_token to retrieve the next page.
-
#toolsets ⇒ Array<Google::Apis::CesV1::Toolset>
The list of toolsets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListToolsetsResponse
constructor
A new instance of ListToolsetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListToolsetsResponse
Returns a new instance of ListToolsetsResponse.
4337 4338 4339 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4337 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token that can be sent as ListToolsetsRequest.page_token to retrieve the
next page. Absence of this field indicates there are no subsequent pages.
Corresponds to the JSON property nextPageToken
4330 4331 4332 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4330 def next_page_token @next_page_token end |
#toolsets ⇒ Array<Google::Apis::CesV1::Toolset>
The list of toolsets.
Corresponds to the JSON property toolsets
4335 4336 4337 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4335 def toolsets @toolsets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4342 4343 4344 4345 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4342 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @toolsets = args[:toolsets] if args.key?(:toolsets) end |