Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
feat: deprecate issue_matches docs: if conversation medium is unspeci…
Browse files Browse the repository at this point in the history
…fied, it will default to PHONE_CALL (#68)

* feat: deprecate issue_matches docs: if conversation medium is unspecified, it will default to PHONE_CALL

PiperOrigin-RevId: 400004079

Source-Link: googleapis/googleapis@e202ad3

Source-Link: googleapis/googleapis-gen@ff55b45
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZmY1NWI0NWJmYmIxNWI3OWJjZjdiMGJhNjVkOTJhZDU0OGQyZjk1YSJ9

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Oct 1, 2021
1 parent be97bea commit 44c03e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Expand Up @@ -376,7 +376,8 @@ message CalculateStatsResponse {
// 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, int32> issue_matches = 6;
// Deprecated, use `issue_matches_stats` field instead.
map<string, int32> issue_matches = 6 [deprecated = true];

// A time series representing the count of conversations created over time
// that match that requested filter criteria.
Expand Down
4 changes: 2 additions & 2 deletions protos/google/cloud/contactcenterinsights/v1/resources.proto
Expand Up @@ -120,7 +120,7 @@ message Conversation {

// Possible media for the conversation.
enum Medium {
// Default value.
// Default value, if unspecified will default to PHONE_CALL.
MEDIUM_UNSPECIFIED = 0;

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

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

// Output only. The duration of the conversation.
Expand Down
5 changes: 4 additions & 1 deletion protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 44c03e9

Please sign in to comment.