You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
location: string, Required. The location of the conversations. (required)
105
+
body: object, The request body.
106
+
The object takes the form of:
107
+
108
+
{ # The request for calculating conversation statistics.
109
+
"filter": "A String", # A filter to reduce results to a specific subset. This field is useful for getting statistics about conversations with specific properties.
110
+
}
111
+
112
+
x__xgafv: string, V1 error format.
113
+
Allowed values
114
+
1 - v1 error format
115
+
2 - v2 error format
116
+
117
+
Returns:
118
+
An object of the form:
119
+
120
+
{ # The response for calculating conversation statistics.
121
+
"averageDuration": "A String", # The average duration of all conversations. The average is calculated using only conversations that have a time duration.
122
+
"averageTurnCount": 42, # The average number of turns per conversation.
123
+
"conversationCount": 42, # The total number of conversations.
124
+
"conversationCountTimeSeries": { # A time series representing conversations over time. # A time series representing the count of conversations created over time that match that requested filter criteria.
125
+
"intervalDuration": "A String", # The duration of each interval.
126
+
"points": [ # An ordered list of intervals from earliest to latest, where each interval represents the number of conversations that transpired during the time window.
127
+
{ # A single interval in a time series.
128
+
"conversationCount": 42, # The number of conversations created in this interval.
129
+
"startTime": "A String", # The start time of this interval.
130
+
},
131
+
],
132
+
},
133
+
"customHighlighterMatches": { # A map associating each custom highlighter resource name with its respective number of matches in the set of conversations.
134
+
"a_key": 42,
135
+
},
136
+
"issueMatches": { # A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects//locations//issueModels//issues/` Deprecated, use `issue_matches_stats` field instead.
137
+
"a_key": 42,
138
+
},
139
+
"issueMatchesStats": { # A map associating each issue resource name with its respective number of matches in the set of conversations. Key has the format: `projects//locations//issueModels//issues/`
140
+
"a_key": { # Aggregated statistics about an issue.
141
+
"displayName": "A String", # Display name of the issue.
"labeledConversationsCount": "A String", # Number of conversations attached to the issue at this point in time.
144
+
},
145
+
},
146
+
"smartHighlighterMatches": { # A map associating each smart highlighter display name with its respective number of matches in the set of conversations.
0 commit comments