public async Task <PostResult> Withdraw(WithdrawParameter parameter, CancellationToken cancellationToken = default)
 {
     return(await Post <PostResult>(WithdrawApiPath, parameter, cancellationToken : cancellationToken).ConfigureAwait(false));
 }
Exemplo n.º 2
0
 public async Task <PostResult> Withdraw(WithdrawParameter parameter)
 {
     return(await Post <PostResult>(WithdrawApiPath, parameter));
 }