Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListExamplesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListExamplesResponse
- 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 Examples.ListExamples.
Instance Attribute Summary collapse
-
#examples ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Example>
The list of examples.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ListExamplesResponse
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ListExamplesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ListExamplesResponse
Returns a new instance of GoogleCloudDialogflowCxV3beta1ListExamplesResponse.
9437 9438 9439 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9437 def initialize(**args) update!(**args) end |
Instance Attribute Details
#examples ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Example>
The list of examples. There will be a maximum number of items returned based
on the page_size field in the request.
Corresponds to the JSON property examples
9429 9430 9431 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9429 def examples @examples end |
#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
9435 9436 9437 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9435 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9442 9443 9444 9445 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9442 def update!(**args) @examples = args[:examples] if args.key?(:examples) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |