Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
The response message for Tools.ListToolVersions.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#tool_versions ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolVersion>
The list of tool versions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse
Returns a new instance of GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse.
10749 10750 10751 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10749 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
10741 10742 10743 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10741 def next_page_token @next_page_token end |
#tool_versions ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolVersion>
The list of tool versions. There will be a maximum number of items returned
based on the page_size field in the request.
Corresponds to the JSON property toolVersions
10747 10748 10749 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10747 def tool_versions @tool_versions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10754 10755 10756 10757 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10754 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tool_versions = args[:tool_versions] if args.key?(:tool_versions) end |