Exemple #1
0
 /// <summary>Snippet for CreateAccountLink</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void CreateAccountLink()
 {
     // Create client
     AccountLinkServiceClient accountLinkServiceClient = AccountLinkServiceClient.Create();
     // Initialize request argument(s)
     string      customerId  = "";
     AccountLink accountLink = new AccountLink();
     // Make the request
     CreateAccountLinkResponse response = accountLinkServiceClient.CreateAccountLink(customerId, accountLink);
 }
 /// <summary>Snippet for CreateAccountLink</summary>
 public void CreateAccountLink()
 {
     // Snippet: CreateAccountLink(string, AccountLink, CallSettings)
     // Create client
     AccountLinkServiceClient accountLinkServiceClient = AccountLinkServiceClient.Create();
     // Initialize request argument(s)
     string      customerId  = "";
     AccountLink accountLink = new AccountLink();
     // Make the request
     CreateAccountLinkResponse response = accountLinkServiceClient.CreateAccountLink(customerId, accountLink);
     // End snippet
 }
 /// <summary>Snippet for CreateAccountLink</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void CreateAccountLinkRequestObject()
 {
     // Create client
     AccountLinkServiceClient accountLinkServiceClient = AccountLinkServiceClient.Create();
     // Initialize request argument(s)
     CreateAccountLinkRequest request = new CreateAccountLinkRequest
     {
         CustomerId  = "",
         AccountLink = new AccountLink(),
     };
     // Make the request
     CreateAccountLinkResponse response = accountLinkServiceClient.CreateAccountLink(request);
 }