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 human readable 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 human readable description of the diff, showing the actual output vs expected output.
193 194 195 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 193 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 # The flow. FLOW = 5 end end |
#type ⇒ ::Google::Cloud::Dialogflow::CX::V3::TestRunDifference::DiffType
Returns The type of diff.
193 194 195 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 193 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 # The flow. FLOW = 5 end end |