Interface TestRunDifferenceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TestRunDifference
,TestRunDifference.Builder
public interface TestRunDifferenceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
A human readable description of the diff, showing the actual output vs expected output.com.google.protobuf.ByteString
getDescriptionBytes()
A human readable description of the diff, showing the actual output vs expected output.TestRunDifference.DiffType
getType()
The type of diff.int
getTypeValue()
The type of diff.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
The type of diff.
.google.cloud.dialogflow.cx.v3beta1.TestRunDifference.DiffType type = 1;
- Returns:
- The enum numeric value on the wire for type.
-
getType
TestRunDifference.DiffType getType()
The type of diff.
.google.cloud.dialogflow.cx.v3beta1.TestRunDifference.DiffType type = 1;
- Returns:
- The type.
-
getDescription
String getDescription()
A human readable description of the diff, showing the actual output vs expected output.
string description = 2;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
A human readable description of the diff, showing the actual output vs expected output.
string description = 2;
- Returns:
- The bytes for description.
-
-