Interface CalculateStatsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CalculateStatsResponse
,CalculateStatsResponse.Builder
public interface CalculateStatsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsCustomHighlighterMatches(String key)
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.boolean
containsIssueMatches(String key)
Deprecated.boolean
containsIssueMatchesStats(String key)
A map associating each issue resource name with its respective number of matches in the set of conversations.boolean
containsSmartHighlighterMatches(String key)
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.com.google.protobuf.Duration
getAverageDuration()
The average duration of all conversations.com.google.protobuf.DurationOrBuilder
getAverageDurationOrBuilder()
The average duration of all conversations.int
getAverageTurnCount()
The average number of turns per conversation.int
getConversationCount()
The total number of conversations.CalculateStatsResponse.TimeSeries
getConversationCountTimeSeries()
A time series representing the count of conversations created over time that match that requested filter criteria.CalculateStatsResponse.TimeSeriesOrBuilder
getConversationCountTimeSeriesOrBuilder()
A time series representing the count of conversations created over time that match that requested filter criteria.Map<String,Integer>
getCustomHighlighterMatches()
Deprecated.int
getCustomHighlighterMatchesCount()
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.Map<String,Integer>
getCustomHighlighterMatchesMap()
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.int
getCustomHighlighterMatchesOrDefault(String key, int defaultValue)
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.int
getCustomHighlighterMatchesOrThrow(String key)
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.Map<String,Integer>
getIssueMatches()
Deprecated.int
getIssueMatchesCount()
Deprecated.Map<String,Integer>
getIssueMatchesMap()
Deprecated.int
getIssueMatchesOrDefault(String key, int defaultValue)
Deprecated.int
getIssueMatchesOrThrow(String key)
Deprecated.Map<String,IssueModelLabelStats.IssueStats>
getIssueMatchesStats()
Deprecated.int
getIssueMatchesStatsCount()
A map associating each issue resource name with its respective number of matches in the set of conversations.Map<String,IssueModelLabelStats.IssueStats>
getIssueMatchesStatsMap()
A map associating each issue resource name with its respective number of matches in the set of conversations.IssueModelLabelStats.IssueStats
getIssueMatchesStatsOrDefault(String key, IssueModelLabelStats.IssueStats defaultValue)
A map associating each issue resource name with its respective number of matches in the set of conversations.IssueModelLabelStats.IssueStats
getIssueMatchesStatsOrThrow(String key)
A map associating each issue resource name with its respective number of matches in the set of conversations.Map<String,Integer>
getSmartHighlighterMatches()
Deprecated.int
getSmartHighlighterMatchesCount()
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.Map<String,Integer>
getSmartHighlighterMatchesMap()
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.int
getSmartHighlighterMatchesOrDefault(String key, int defaultValue)
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.int
getSmartHighlighterMatchesOrThrow(String key)
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.boolean
hasAverageDuration()
The average duration of all conversations.boolean
hasConversationCountTimeSeries()
A time series representing the count of conversations created over time that match that requested filter criteria.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasAverageDuration
boolean hasAverageDuration()
The average duration of all conversations. The average is calculated using only conversations that have a time duration.
.google.protobuf.Duration average_duration = 1;
- Returns:
- Whether the averageDuration field is set.
-
getAverageDuration
com.google.protobuf.Duration getAverageDuration()
The average duration of all conversations. The average is calculated using only conversations that have a time duration.
.google.protobuf.Duration average_duration = 1;
- Returns:
- The averageDuration.
-
getAverageDurationOrBuilder
com.google.protobuf.DurationOrBuilder getAverageDurationOrBuilder()
The average duration of all conversations. The average is calculated using only conversations that have a time duration.
.google.protobuf.Duration average_duration = 1;
-
getAverageTurnCount
int getAverageTurnCount()
The average number of turns per conversation.
int32 average_turn_count = 2;
- Returns:
- The averageTurnCount.
-
getConversationCount
int getConversationCount()
The total number of conversations.
int32 conversation_count = 3;
- Returns:
- The conversationCount.
-
getSmartHighlighterMatchesCount
int getSmartHighlighterMatchesCount()
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.
map<string, int32> smart_highlighter_matches = 4;
-
containsSmartHighlighterMatches
boolean containsSmartHighlighterMatches(String key)
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.
map<string, int32> smart_highlighter_matches = 4;
-
getSmartHighlighterMatches
@Deprecated Map<String,Integer> getSmartHighlighterMatches()
Deprecated.UsegetSmartHighlighterMatchesMap()
instead.
-
getSmartHighlighterMatchesMap
Map<String,Integer> getSmartHighlighterMatchesMap()
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.
map<string, int32> smart_highlighter_matches = 4;
-
getSmartHighlighterMatchesOrDefault
int getSmartHighlighterMatchesOrDefault(String key, int defaultValue)
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.
map<string, int32> smart_highlighter_matches = 4;
-
getSmartHighlighterMatchesOrThrow
int getSmartHighlighterMatchesOrThrow(String key)
A map associating each smart highlighter display name with its respective number of matches in the set of conversations.
map<string, int32> smart_highlighter_matches = 4;
-
getCustomHighlighterMatchesCount
int getCustomHighlighterMatchesCount()
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.
map<string, int32> custom_highlighter_matches = 5;
-
containsCustomHighlighterMatches
boolean containsCustomHighlighterMatches(String key)
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.
map<string, int32> custom_highlighter_matches = 5;
-
getCustomHighlighterMatches
@Deprecated Map<String,Integer> getCustomHighlighterMatches()
Deprecated.UsegetCustomHighlighterMatchesMap()
instead.
-
getCustomHighlighterMatchesMap
Map<String,Integer> getCustomHighlighterMatchesMap()
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.
map<string, int32> custom_highlighter_matches = 5;
-
getCustomHighlighterMatchesOrDefault
int getCustomHighlighterMatchesOrDefault(String key, int defaultValue)
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.
map<string, int32> custom_highlighter_matches = 5;
-
getCustomHighlighterMatchesOrThrow
int getCustomHighlighterMatchesOrThrow(String key)
A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.
map<string, int32> custom_highlighter_matches = 5;
-
getIssueMatchesCount
@Deprecated int getIssueMatchesCount()
Deprecated.A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>` Deprecated, use `issue_matches_stats` field instead.
map<string, int32> issue_matches = 6 [deprecated = true];
-
containsIssueMatches
@Deprecated boolean containsIssueMatches(String key)
Deprecated.A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>` Deprecated, use `issue_matches_stats` field instead.
map<string, int32> issue_matches = 6 [deprecated = true];
-
getIssueMatches
@Deprecated Map<String,Integer> getIssueMatches()
Deprecated.UsegetIssueMatchesMap()
instead.
-
getIssueMatchesMap
@Deprecated Map<String,Integer> getIssueMatchesMap()
Deprecated.A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>` Deprecated, use `issue_matches_stats` field instead.
map<string, int32> issue_matches = 6 [deprecated = true];
-
getIssueMatchesOrDefault
@Deprecated int getIssueMatchesOrDefault(String key, int defaultValue)
Deprecated.A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>` Deprecated, use `issue_matches_stats` field instead.
map<string, int32> issue_matches = 6 [deprecated = true];
-
getIssueMatchesOrThrow
@Deprecated int getIssueMatchesOrThrow(String key)
Deprecated.A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>` Deprecated, use `issue_matches_stats` field instead.
map<string, int32> issue_matches = 6 [deprecated = true];
-
getIssueMatchesStatsCount
int getIssueMatchesStatsCount()
A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>`
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_matches_stats = 8;
-
containsIssueMatchesStats
boolean containsIssueMatchesStats(String key)
A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>`
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_matches_stats = 8;
-
getIssueMatchesStats
@Deprecated Map<String,IssueModelLabelStats.IssueStats> getIssueMatchesStats()
Deprecated.UsegetIssueMatchesStatsMap()
instead.
-
getIssueMatchesStatsMap
Map<String,IssueModelLabelStats.IssueStats> getIssueMatchesStatsMap()
A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>`
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_matches_stats = 8;
-
getIssueMatchesStatsOrDefault
IssueModelLabelStats.IssueStats getIssueMatchesStatsOrDefault(String key, IssueModelLabelStats.IssueStats defaultValue)
A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>`
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_matches_stats = 8;
-
getIssueMatchesStatsOrThrow
IssueModelLabelStats.IssueStats getIssueMatchesStatsOrThrow(String key)
A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects/<Project-ID>/locations/<Location-ID>/issueModels/<Issue-Model-ID>/issues/<Issue-ID>`
map<string, .google.cloud.contactcenterinsights.v1.IssueModelLabelStats.IssueStats> issue_matches_stats = 8;
-
hasConversationCountTimeSeries
boolean hasConversationCountTimeSeries()
A time series representing the count of conversations created over time that match that requested filter criteria.
.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries conversation_count_time_series = 7;
- Returns:
- Whether the conversationCountTimeSeries field is set.
-
getConversationCountTimeSeries
CalculateStatsResponse.TimeSeries getConversationCountTimeSeries()
A time series representing the count of conversations created over time that match that requested filter criteria.
.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries conversation_count_time_series = 7;
- Returns:
- The conversationCountTimeSeries.
-
getConversationCountTimeSeriesOrBuilder
CalculateStatsResponse.TimeSeriesOrBuilder getConversationCountTimeSeriesOrBuilder()
A time series representing the count of conversations created over time that match that requested filter criteria.
.google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries conversation_count_time_series = 7;
-
-