Interface IntentCoverageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IntentCoverage
,IntentCoverage.Builder
public interface IntentCoverageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
getCoverageScore()
The percent of intents in the agent that are covered.IntentCoverage.Intent
getIntents(int index)
The list of Intents present in the agentint
getIntentsCount()
The list of Intents present in the agentList<IntentCoverage.Intent>
getIntentsList()
The list of Intents present in the agentIntentCoverage.IntentOrBuilder
getIntentsOrBuilder(int index)
The list of Intents present in the agentList<? extends IntentCoverage.IntentOrBuilder>
getIntentsOrBuilderList()
The list of Intents 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
-
getIntentsList
List<IntentCoverage.Intent> getIntentsList()
The list of Intents present in the agent
repeated .google.cloud.dialogflow.cx.v3beta1.IntentCoverage.Intent intents = 1;
-
getIntents
IntentCoverage.Intent getIntents(int index)
The list of Intents present in the agent
repeated .google.cloud.dialogflow.cx.v3beta1.IntentCoverage.Intent intents = 1;
-
getIntentsCount
int getIntentsCount()
The list of Intents present in the agent
repeated .google.cloud.dialogflow.cx.v3beta1.IntentCoverage.Intent intents = 1;
-
getIntentsOrBuilderList
List<? extends IntentCoverage.IntentOrBuilder> getIntentsOrBuilderList()
The list of Intents present in the agent
repeated .google.cloud.dialogflow.cx.v3beta1.IntentCoverage.Intent intents = 1;
-
getIntentsOrBuilder
IntentCoverage.IntentOrBuilder getIntentsOrBuilder(int index)
The list of Intents present in the agent
repeated .google.cloud.dialogflow.cx.v3beta1.IntentCoverage.Intent intents = 1;
-
getCoverageScore
float getCoverageScore()
The percent of intents in the agent that are covered.
float coverage_score = 2;
- Returns:
- The coverageScore.
-
-