/// <summary>Snippet for MutateAccountLink</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MutateAccountLink()
 {
     // Create client
     AccountLinkServiceClient accountLinkServiceClient = AccountLinkServiceClient.Create();
     // Initialize request argument(s)
     string customerId = "";
     AccountLinkOperation operation = new AccountLinkOperation();
     // Make the request
     MutateAccountLinkResponse response = accountLinkServiceClient.MutateAccountLink(customerId, operation);
 }
 /// <summary>Snippet for MutateAccountLink</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MutateAccountLinkRequestObject()
 {
     // Create client
     AccountLinkServiceClient accountLinkServiceClient = AccountLinkServiceClient.Create();
     // Initialize request argument(s)
     MutateAccountLinkRequest request = new MutateAccountLinkRequest
     {
         CustomerId     = "",
         Operation      = new AccountLinkOperation(),
         PartialFailure = false,
         ValidateOnly   = false,
     };
     // Make the request
     MutateAccountLinkResponse response = accountLinkServiceClient.MutateAccountLink(request);
 }