Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BatchRunTestCasesRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb

Overview

The request message for TestCases.BatchRunTestCases.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3BatchRunTestCasesRequest

Returns a new instance of GoogleCloudDialogflowCxV3BatchRunTestCasesRequest.



328
329
330
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 328

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#environmentString

Optional. If not set, draft environment is assumed. Format: projects// locations//agents//environments/. Corresponds to the JSON property environment

Returns:

  • (String)


321
322
323
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 321

def environment
  @environment
end

#test_casesArray<String>

Required. Format: projects//locations//agents//testCases/. Corresponds to the JSON property testCases

Returns:

  • (Array<String>)


326
327
328
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 326

def test_cases
  @test_cases
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



333
334
335
336
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 333

def update!(**args)
  @environment = args[:environment] if args.key?(:environment)
  @test_cases = args[:test_cases] if args.key?(:test_cases)
end