Skip to content

Commit 13a3c9e

Browse files
Google APIscopybara-github
authored andcommitted
docs: Clarify comments of ConversationView enum
PiperOrigin-RevId: 422809895
1 parent 107a322 commit 13a3c9e

1 file changed

Lines changed: 15 additions & 14 deletions

File tree

google/cloud/contactcenterinsights/v1/contact_center_insights.proto

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,21 @@ service ContactCenterInsights {
355355
}
356356
}
357357

358+
// Represents the options for viewing a conversation.
359+
enum ConversationView {
360+
// The conversation view is not specified.
361+
//
362+
// * Defaults to `FULL` in `GetConversationRequest`.
363+
// * Defaults to `BASIC` in `ListConversationsRequest`.
364+
CONVERSATION_VIEW_UNSPECIFIED = 0;
365+
366+
// Populates all fields in the conversation.
367+
FULL = 2;
368+
369+
// Populates all fields in the conversation except the transcript.
370+
BASIC = 1;
371+
}
372+
358373
// The request for calculating conversation statistics.
359374
message CalculateStatsRequest {
360375
// Required. The location of the conversations.
@@ -370,20 +385,6 @@ message CalculateStatsRequest {
370385
string filter = 2;
371386
}
372387

373-
// Represents the options for views of a conversation.
374-
enum ConversationView {
375-
// Not specified. Defaults to FULL on GetConversationRequest and BASIC for
376-
// ListConversationsRequest.
377-
CONVERSATION_VIEW_UNSPECIFIED = 0;
378-
379-
// Transcript field is not populated in the response for Insights
380-
// conversation.
381-
BASIC = 1;
382-
383-
// All fields are populated for Insights conversation.
384-
FULL = 2;
385-
}
386-
387388
// The response for calculating conversation statistics.
388389
message CalculateStatsResponse {
389390
// A time series representing conversations over time.

0 commit comments

Comments
 (0)