/// <summary>Snippet for ListPaymentsAccounts</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void ListPaymentsAccounts()
 {
     // Create client
     PaymentsAccountServiceClient paymentsAccountServiceClient = PaymentsAccountServiceClient.Create();
     // Initialize request argument(s)
     string customerId = "";
     // Make the request
     ListPaymentsAccountsResponse response = paymentsAccountServiceClient.ListPaymentsAccounts(customerId);
 }
        /// <summary>Snippet for ListPaymentsAccountsAsync</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 ListPaymentsAccountsAsync()
        {
            // Create client
            PaymentsAccountServiceClient paymentsAccountServiceClient = await PaymentsAccountServiceClient.CreateAsync();

            // Initialize request argument(s)
            string customerId = "";
            // Make the request
            ListPaymentsAccountsResponse response = await paymentsAccountServiceClient.ListPaymentsAccountsAsync(customerId);
        }
Esempio n. 3
0
 /// <summary>Snippet for ListPaymentsAccounts</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void ListPaymentsAccountsRequestObject()
 {
     // Create client
     PaymentsAccountServiceClient paymentsAccountServiceClient = PaymentsAccountServiceClient.Create();
     // Initialize request argument(s)
     ListPaymentsAccountsRequest request = new ListPaymentsAccountsRequest {
         CustomerId = "",
     };
     // Make the request
     ListPaymentsAccountsResponse response = paymentsAccountServiceClient.ListPaymentsAccounts(request);
 }
        /// <summary>Snippet for ListPaymentsAccountsAsync</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 ListPaymentsAccountsRequestObjectAsync()
        {
            // Create client
            PaymentsAccountServiceClient paymentsAccountServiceClient = await PaymentsAccountServiceClient.CreateAsync();

            // Initialize request argument(s)
            ListPaymentsAccountsRequest request = new ListPaymentsAccountsRequest {
                CustomerId = "",
            };
            // Make the request
            ListPaymentsAccountsResponse response = await paymentsAccountServiceClient.ListPaymentsAccountsAsync(request);
        }
Esempio n. 5
0
        /// <summary>Snippet for ListPaymentsAccountsAsync</summary>
        public async Task ListPaymentsAccountsAsync()
        {
            // Snippet: ListPaymentsAccountsAsync(string, CallSettings)
            // Additional: ListPaymentsAccountsAsync(string, CancellationToken)
            // Create client
            PaymentsAccountServiceClient paymentsAccountServiceClient = await PaymentsAccountServiceClient.CreateAsync();

            // Initialize request argument(s)
            string customerId = "";
            // Make the request
            ListPaymentsAccountsResponse response = await paymentsAccountServiceClient.ListPaymentsAccountsAsync(customerId);

            // End snippet
        }
Esempio n. 6
0
        /// <summary>Snippet for ListPaymentsAccountsAsync</summary>
        public async Task ListPaymentsAccountsRequestObjectAsync()
        {
            // Snippet: ListPaymentsAccountsAsync(ListPaymentsAccountsRequest, CallSettings)
            // Additional: ListPaymentsAccountsAsync(ListPaymentsAccountsRequest, CancellationToken)
            // Create client
            PaymentsAccountServiceClient paymentsAccountServiceClient = await PaymentsAccountServiceClient.CreateAsync();

            // Initialize request argument(s)
            ListPaymentsAccountsRequest request = new ListPaymentsAccountsRequest {
                CustomerId = "",
            };
            // Make the request
            ListPaymentsAccountsResponse response = await paymentsAccountServiceClient.ListPaymentsAccountsAsync(request);

            // End snippet
        }