Class: Google::Apis::CesV1::ListToolsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::ListToolsResponse
- 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.ListTools.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as ListToolsRequest.page_token to retrieve the next page.
-
#tools ⇒ Array<Google::Apis::CesV1::Tool>
The list of tools.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListToolsResponse
constructor
A new instance of ListToolsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListToolsResponse
Returns a new instance of ListToolsResponse.
4951 4952 4953 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4951 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token that can be sent as ListToolsRequest.page_token to retrieve the next
page. Absence of this field indicates there are no subsequent pages.
Corresponds to the JSON property nextPageToken
4944 4945 4946 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4944 def next_page_token @next_page_token end |
#tools ⇒ Array<Google::Apis::CesV1::Tool>
The list of tools.
Corresponds to the JSON property tools
4949 4950 4951 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4949 def tools @tools end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4956 4957 4958 4959 |
# File 'lib/google/apis/ces_v1/classes.rb', line 4956 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tools = args[:tools] if args.key?(:tools) end |