/// <summary>
 /// Performs a soft-delete of the indicated account.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='client'>
 /// Client short name
 /// </param>
 /// <param name='id'>
 /// Id for the account
 /// </param>
 public static void DeleteAccount(this IAccounts operations, string client, string id)
 {
     operations.DeleteAccountAsync(client, id).GetAwaiter().GetResult();
 }