Skip to content

Commit 8488545

Browse files
Google APIscopybara-github
authored andcommitted
feat: display_name is the display name for the assigned issue
PiperOrigin-RevId: 393354400
1 parent ccb7347 commit 8488545

2 files changed

Lines changed: 13 additions & 7 deletions

File tree

google/cloud/contactcenterinsights/v1/contact_center_insights.proto

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -432,10 +432,10 @@ message ListConversationsRequest {
432432
}
433433
];
434434

435-
// The maximum number of conversations to return in the response. If this
436-
// value is zero, the service will select a default size. A call might return
437-
// fewer objects than requested. A non-empty `next_page_token` in the response
438-
// indicates that more data is available.
435+
// The maximum number of conversations to return in the response. A valid page
436+
// size ranges from 0 to 1,000 inclusive. If the page size is zero or
437+
// unspecified, a default page size of 100 will be chosen. Note that a call
438+
// might return fewer results than the requested page size.
439439
int32 page_size = 2;
440440

441441
// The value returned by the last `ListConversationsResponse`. This value
@@ -456,8 +456,9 @@ message ListConversationsResponse {
456456
// The conversations that match the request.
457457
repeated Conversation conversations = 1;
458458

459-
// A token, which can be sent as `page_token` to retrieve the next page.
460-
// If this field is omitted, there are no subsequent pages.
459+
// A token which can be sent as `page_token` to retrieve the next page. If
460+
// this field is set, it means there is another page available. If it is not
461+
// set, it means no other pages are available.
461462
string next_page_token = 2;
462463
}
463464

@@ -922,7 +923,7 @@ message GetSettingsRequest {
922923

923924
// The request to update project-level settings.
924925
message UpdateSettingsRequest {
925-
// Required. The new values for the conversation.
926+
// Required. The new settings values.
926927
Settings settings = 1 [(google.api.field_behavior) = REQUIRED];
927928

928929
// Required. The list of fields to be updated.

google/cloud/contactcenterinsights/v1/resources.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,10 @@ message IssueAssignment {
305305
// Score indicating the likelihood of the issue assignment.
306306
// currently bounded on [0,1].
307307
double score = 2;
308+
309+
// Immutable. Display name of the assigned issue. This field is set at time of analyis
310+
// and immutable since then.
311+
string display_name = 3 [(google.api.field_behavior) = IMMUTABLE];
308312
}
309313

310314
// A piece of metadata that applies to a window of a call.
@@ -1041,6 +1045,7 @@ message ConversationParticipant {
10411045
string user_id = 6;
10421046
}
10431047

1048+
// Deprecated. Use `dialogflow_participant_name` instead.
10441049
// The name of the Dialogflow participant. Format:
10451050
// projects/{project}/locations/{location}/conversations/{conversation}/participants/{participant}
10461051
string dialogflow_participant = 1 [deprecated = true];

0 commit comments

Comments
 (0)