class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BatchRunTestCasesRequest

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_v3/classes.rb, line 297
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_v3/classes.rb, line 302
def update!(**args)
  @environment = args[:environment] if args.key?(:environment)
  @test_cases = args[:test_cases] if args.key?(:test_cases)
end