Class: Google::Cloud::Dialogflow::CX::V3::TestRunDifference
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::CX::V3::TestRunDifference
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dialogflow/cx/v3/test_case.rb
Overview
The description of differences between original and replayed agent output.
Defined Under Namespace
Modules: DiffType
Instance Attribute Summary collapse
-
#description ⇒ ::String
A description of the diff, showing the actual output vs expected output.
-
#type ⇒ ::Google::Cloud::Dialogflow::CX::V3::TestRunDifference::DiffType
The type of diff.
Instance Attribute Details
#description ⇒ ::String
Returns A description of the diff, showing the actual output vs expected output.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/test_case.rb', line 196 class TestRunDifference include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # What part of the message replay differs from the test case. module DiffType # Should never be used. DIFF_TYPE_UNSPECIFIED = 0 # The intent. INTENT = 1 # The page. PAGE = 2 # The parameters. PARAMETERS = 3 # The message utterance. UTTERANCE = 4 end end |
#type ⇒ ::Google::Cloud::Dialogflow::CX::V3::TestRunDifference::DiffType
Returns The type of diff.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/test_case.rb', line 196 class TestRunDifference include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # What part of the message replay differs from the test case. module DiffType # Should never be used. DIFF_TYPE_UNSPECIFIED = 0 # The intent. INTENT = 1 # The page. PAGE = 2 # The parameters. PARAMETERS = 3 # The message utterance. UTTERANCE = 4 end end |