Skip to content

Commit e202ad3

Browse files
Google APIscopybara-github
authored andcommitted
feat: deprecate issue_matches
docs: if conversation medium is unspecified, it will default to PHONE_CALL PiperOrigin-RevId: 400004079
1 parent 408e3b0 commit e202ad3

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

google/cloud/contactcenterinsights/v1/contact_center_insights.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,8 @@ message CalculateStatsResponse {
376376
// matches in the set of conversations. Key has the format:
377377
// `projects/<Project ID>/locations/<Location ID>/issueModels/<Issue Model
378378
// ID>/issues/<Issue ID>`
379-
map<string, int32> issue_matches = 6;
379+
// Deprecated, use `issue_matches_stats` field instead.
380+
map<string, int32> issue_matches = 6 [deprecated = true];
380381

381382
// A time series representing the count of conversations created over time
382383
// that match that requested filter criteria.

google/cloud/contactcenterinsights/v1/resources.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ message Conversation {
120120

121121
// Possible media for the conversation.
122122
enum Medium {
123-
// Default value.
123+
// Default value, if unspecified will default to PHONE_CALL.
124124
MEDIUM_UNSPECIFIED = 0;
125125

126126
// The format for conversations that took place over the phone.
@@ -181,7 +181,7 @@ message Conversation {
181181
// Output only. The conversation transcript.
182182
Transcript transcript = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
183183

184-
// Immutable. The conversation medium.
184+
// Immutable. The conversation medium, if unspecified will default to PHONE_CALL.
185185
Medium medium = 9 [(google.api.field_behavior) = IMMUTABLE];
186186

187187
// Output only. The duration of the conversation.

0 commit comments

Comments
 (0)