Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse
- 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 Environments.ListTestCaseResults.
Instance Attribute Summary collapse
-
#continuous_test_results ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ContinuousTestResult>
The list of continuous test results.
-
#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) ⇒ GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse
Returns a new instance of GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse.
8966 8967 8968 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8966 def initialize(**args) update!(**args) end |
Instance Attribute Details
#continuous_test_results ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ContinuousTestResult>
The list of continuous test results.
Corresponds to the JSON property continuousTestResults
8958 8959 8960 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8958 def continuous_test_results @continuous_test_results 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
8964 8965 8966 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8964 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8971 8972 8973 8974 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8971 def update!(**args) @continuous_test_results = args[:continuous_test_results] if args.key?(:continuous_test_results) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |