Interface IssueModelLabelStatsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IssueModelLabelStats
,IssueModelLabelStats.Builder
public interface IssueModelLabelStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsIssueStats(String key)
Statistics on each issue.long
getAnalyzedConversationsCount()
Number of conversations the issue model has analyzed at this point in time.Map<String,IssueModelLabelStats.IssueStats>
getIssueStats()
Deprecated.int
getIssueStatsCount()
Statistics on each issue.Map<String,IssueModelLabelStats.IssueStats>
getIssueStatsMap()
Statistics on each issue.IssueModelLabelStats.IssueStats
getIssueStatsOrDefault(String key, IssueModelLabelStats.IssueStats defaultValue)
Statistics on each issue.IssueModelLabelStats.IssueStats
getIssueStatsOrThrow(String key)
Statistics on each issue.long
getUnclassifiedConversationsCount()
Number of analyzed conversations for which no issue was applicable at this point in time.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAnalyzedConversationsCount
long getAnalyzedConversationsCount()
Number of conversations the issue model has analyzed at this point in time.
int64 analyzed_conversations_count = 1;
- Returns:
- The analyzedConversationsCount.
-
getUnclassifiedConversationsCount
long getUnclassifiedConversationsCount()
Number of analyzed conversations for which no issue was applicable at this point in time.
int64 unclassified_conversations_count = 2;
- Returns:
- The unclassifiedConversationsCount.
-
getIssueStatsCount
int getIssueStatsCount()
Statistics on each issue. Key is the issue's resource name.
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_stats = 3;
-
containsIssueStats
boolean containsIssueStats(String key)
Statistics on each issue. Key is the issue's resource name.
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_stats = 3;
-
getIssueStats
@Deprecated Map<String,IssueModelLabelStats.IssueStats> getIssueStats()
Deprecated.UsegetIssueStatsMap()
instead.
-
getIssueStatsMap
Map<String,IssueModelLabelStats.IssueStats> getIssueStatsMap()
Statistics on each issue. Key is the issue's resource name.
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_stats = 3;
-
getIssueStatsOrDefault
IssueModelLabelStats.IssueStats getIssueStatsOrDefault(String key, IssueModelLabelStats.IssueStats defaultValue)
Statistics on each issue. Key is the issue's resource name.
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_stats = 3;
-
getIssueStatsOrThrow
IssueModelLabelStats.IssueStats getIssueStatsOrThrow(String key)
Statistics on each issue. Key is the issue's resource name.
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_stats = 3;
-
-