/// <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);
 }
Пример #2
0
        /// <summary>Snippet for GetShoppingPerformanceViewAsync</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public async Task GetShoppingPerformanceViewResourceNamesAsync()
        {
            // Create client
            ShoppingPerformanceViewServiceClient shoppingPerformanceViewServiceClient = await ShoppingPerformanceViewServiceClient.CreateAsync();

            // Initialize request argument(s)
            ShoppingPerformanceViewName resourceName = ShoppingPerformanceViewName.FromCustomer("[CUSTOMER]");
            // Make the request
            ShoppingPerformanceView response = await shoppingPerformanceViewServiceClient.GetShoppingPerformanceViewAsync(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 GetShoppingPerformanceViewAsync</summary>
        public async Task GetShoppingPerformanceViewResourceNamesAsync()
        {
            // Snippet: GetShoppingPerformanceViewAsync(ShoppingPerformanceViewName, CallSettings)
            // Additional: GetShoppingPerformanceViewAsync(ShoppingPerformanceViewName, CancellationToken)
            // Create client
            ShoppingPerformanceViewServiceClient shoppingPerformanceViewServiceClient = await ShoppingPerformanceViewServiceClient.CreateAsync();

            // Initialize request argument(s)
            ShoppingPerformanceViewName resourceName = ShoppingPerformanceViewName.FromCustomer("[CUSTOMER]");
            // Make the request
            ShoppingPerformanceView response = await shoppingPerformanceViewServiceClient.GetShoppingPerformanceViewAsync(resourceName);

            // End snippet
        }