Interface TransitionCoverageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TransitionCoverage,TransitionCoverage.Builder
public interface TransitionCoverageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description floatgetCoverageScore()The percent of transitions in the agent that are covered.TransitionCoverage.TransitiongetTransitions(int index)The list of Transitions present in the agent.intgetTransitionsCount()The list of Transitions present in the agent.List<TransitionCoverage.Transition>getTransitionsList()The list of Transitions present in the agent.TransitionCoverage.TransitionOrBuildergetTransitionsOrBuilder(int index)The list of Transitions present in the agent.List<? extends TransitionCoverage.TransitionOrBuilder>getTransitionsOrBuilderList()The list of Transitions present in the agent.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTransitionsList
List<TransitionCoverage.Transition> getTransitionsList()
The list of Transitions present in the agent.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionCoverage.Transition transitions = 1;
-
getTransitions
TransitionCoverage.Transition getTransitions(int index)
The list of Transitions present in the agent.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionCoverage.Transition transitions = 1;
-
getTransitionsCount
int getTransitionsCount()
The list of Transitions present in the agent.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionCoverage.Transition transitions = 1;
-
getTransitionsOrBuilderList
List<? extends TransitionCoverage.TransitionOrBuilder> getTransitionsOrBuilderList()
The list of Transitions present in the agent.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionCoverage.Transition transitions = 1;
-
getTransitionsOrBuilder
TransitionCoverage.TransitionOrBuilder getTransitionsOrBuilder(int index)
The list of Transitions present in the agent.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionCoverage.Transition transitions = 1;
-
getCoverageScore
float getCoverageScore()
The percent of transitions in the agent that are covered.
float coverage_score = 2;- Returns:
- The coverageScore.
-
-