/// <summary>Snippet for ListIssueModels</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void ListIssueModels()
 {
     // Create client
     ContactCenterInsightsClient contactCenterInsightsClient = ContactCenterInsightsClient.Create();
     // Initialize request argument(s)
     string parent = "projects/[PROJECT]/locations/[LOCATION]";
     // Make the request
     ListIssueModelsResponse response = contactCenterInsightsClient.ListIssueModels(parent);
 }
Ejemplo n.º 2
0
 /// <summary>Snippet for ListIssueModels</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void ListIssueModelsResourceNames()
 {
     // Create client
     ContactCenterInsightsClient contactCenterInsightsClient = ContactCenterInsightsClient.Create();
     // Initialize request argument(s)
     LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
     // Make the request
     ListIssueModelsResponse response = contactCenterInsightsClient.ListIssueModels(parent);
 }
 /// <summary>Snippet for ListIssueModels</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void ListIssueModelsRequestObject()
 {
     // Create client
     ContactCenterInsightsClient contactCenterInsightsClient = ContactCenterInsightsClient.Create();
     // Initialize request argument(s)
     ListIssueModelsRequest request = new ListIssueModelsRequest
     {
         ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
     };
     // Make the request
     ListIssueModelsResponse response = contactCenterInsightsClient.ListIssueModels(request);
 }