class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1BatchRunTestCasesRequest
The request message for TestCases.BatchRunTestCases.
Attributes
environment[RW]
Optional. If not set, draft environment is assumed. Format: `projects// locations//agents//environments/`. Corresponds to the JSON property `environment` @return [String]
test_cases[RW]
Required. Format: `projects//locations//agents//testCases/`. Corresponds to the JSON property `testCases` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 2838 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 2843 def update!(**args) @environment = args[:environment] if args.key?(:environment) @test_cases = args[:test_cases] if args.key?(:test_cases) end