/// <summary>Snippet for CreateConversation</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void CreateConversationResourceNames()
 {
     // Create client
     ContactCenterInsightsClient contactCenterInsightsClient = ContactCenterInsightsClient.Create();
     // Initialize request argument(s)
     LocationName parent         = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
     Conversation conversation   = new Conversation();
     string       conversationId = "";
     // Make the request
     Conversation response = contactCenterInsightsClient.CreateConversation(parent, conversation, conversationId);
 }
 /// <summary>Snippet for CreateConversation</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void CreateConversation()
 {
     // Create client
     ContactCenterInsightsClient contactCenterInsightsClient = ContactCenterInsightsClient.Create();
     // Initialize request argument(s)
     string       parent         = "projects/[PROJECT]/locations/[LOCATION]";
     Conversation conversation   = new Conversation();
     string       conversationId = "";
     // Make the request
     Conversation response = contactCenterInsightsClient.CreateConversation(parent, conversation, conversationId);
 }
 /// <summary>Snippet for CreateConversation</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void CreateConversationRequestObject()
 {
     // Create client
     ContactCenterInsightsClient contactCenterInsightsClient = ContactCenterInsightsClient.Create();
     // Initialize request argument(s)
     CreateConversationRequest request = new CreateConversationRequest
     {
         ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
         Conversation         = new Conversation(),
         ConversationId       = "",
     };
     // Make the request
     Conversation response = contactCenterInsightsClient.CreateConversation(request);
 }