/// <summary>
 /// Resets the password for the currently logged in user.
 /// </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 PostResetPassword(this IAccounts operations, string client, string id)
 {
     operations.PostResetPasswordAsync(client, id).GetAwaiter().GetResult();
 }