Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TestCaseResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TestCaseResult
- 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
Represents a result from running a test case in an agent environment.
Instance Attribute Summary collapse
-
#conversation_turns ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ConversationTurn>
The conversation turns uttered during the test case replay in chronological order.
-
#environment ⇒ String
Environment where the test was run.
-
#name ⇒ String
The resource name for the test case result.
-
#test_result ⇒ String
Whether the test case passed in the agent environment.
-
#test_time ⇒ String
The time that the test was run.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TestCaseResult
constructor
A new instance of GoogleCloudDialogflowCxV3TestCaseResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TestCaseResult
Returns a new instance of GoogleCloudDialogflowCxV3TestCaseResult.
5307 5308 5309 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5307 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation_turns ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ConversationTurn>
The conversation turns uttered during the test case replay in chronological
order.
Corresponds to the JSON property conversationTurns
5283 5284 5285 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5283 def conversation_turns @conversation_turns end |
#environment ⇒ String
Environment where the test was run. If not set, it indicates the draft
environment.
Corresponds to the JSON property environment
5289 5290 5291 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5289 def environment @environment end |
#name ⇒ String
The resource name for the test case result. Format: projects//locations//
agents//testCases/ /results/.
Corresponds to the JSON property name
5295 5296 5297 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5295 def name @name end |
#test_result ⇒ String
Whether the test case passed in the agent environment.
Corresponds to the JSON property testResult
5300 5301 5302 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5300 def test_result @test_result end |
#test_time ⇒ String
The time that the test was run.
Corresponds to the JSON property testTime
5305 5306 5307 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5305 def test_time @test_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5312 5313 5314 5315 5316 5317 5318 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5312 def update!(**args) @conversation_turns = args[:conversation_turns] if args.key?(:conversation_turns) @environment = args[:environment] if args.key?(:environment) @name = args[:name] if args.key?(:name) @test_result = args[:test_result] if args.key?(:test_result) @test_time = args[:test_time] if args.key?(:test_time) end |