class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse
The response message for TestCases.ListTestCaseResults.
Attributes
next_page_token[RW]
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` @return [String]
test_case_results[RW]
The list of test case results. Corresponds to the JSON property `testCaseResults` @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TestCaseResult>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 5348 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 5353 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @test_case_results = args[:test_case_results] if args.key?(:test_case_results) end