File tree Expand file tree Collapse file tree
google/cloud/contactcenterinsights/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
359374message 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.
388389message CalculateStatsResponse {
389390 // A time series representing conversations over time.
You can’t perform that action at this time.
0 commit comments