/// <summary>Snippet for GetShoppingPerformanceView</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void GetShoppingPerformanceView()
 {
     // Create client
     ShoppingPerformanceViewServiceClient shoppingPerformanceViewServiceClient = ShoppingPerformanceViewServiceClient.Create();
     // Initialize request argument(s)
     string resourceName = "customers/[CUSTOMER_ID]/shoppingPerformanceView";
     // Make the request
     ShoppingPerformanceView response = shoppingPerformanceViewServiceClient.GetShoppingPerformanceView(resourceName);
 }
 /// <summary>Snippet for GetShoppingPerformanceView</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void GetShoppingPerformanceViewRequestObject()
 {
     // Create client
     ShoppingPerformanceViewServiceClient shoppingPerformanceViewServiceClient = ShoppingPerformanceViewServiceClient.Create();
     // Initialize request argument(s)
     GetShoppingPerformanceViewRequest request = new GetShoppingPerformanceViewRequest
     {
         ResourceNameAsShoppingPerformanceViewName = ShoppingPerformanceViewName.FromCustomer("[CUSTOMER_ID]"),
     };
     // Make the request
     ShoppingPerformanceView response = shoppingPerformanceViewServiceClient.GetShoppingPerformanceView(request);
 }
 /// <summary>Snippet for GetShoppingPerformanceView</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void GetShoppingPerformanceViewResourceNames()
 {
     // Create client
     ShoppingPerformanceViewServiceClient shoppingPerformanceViewServiceClient = ShoppingPerformanceViewServiceClient.Create();
     // Initialize request argument(s)
     ShoppingPerformanceViewName resourceName = ShoppingPerformanceViewName.FromCustomer("[CUSTOMER]");
     // Make the request
     ShoppingPerformanceView response = shoppingPerformanceViewServiceClient.GetShoppingPerformanceView(resourceName);
 }