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