public BitFlyerResponse <BfWithdrawResponse> Withdraw(BfWithdrawRequest request) => WithdrawAsync(request, CancellationToken.None).Result;
public BitFlyerResponse <BfWithdrawResponse> Withdraw(BfWithdrawRequest request) { var jsonRequest = JsonConvert.SerializeObject(request, _jsonSettings); return(PrivatePost <BfWithdrawResponse>(nameof(Withdraw), jsonRequest)); }
/// <summary> /// Withdrawing Funds /// <see href="https://scrapbox.io/BitFlyerDotNet/Withdraw">Online help</see> /// </summary> /// <param name="request"></param> /// <returns></returns> public Task <BitFlyerResponse <BfWithdrawResponse> > WithdrawAsync(BfWithdrawRequest request, CancellationToken ct) => PostPrivateAsync <BfWithdrawResponse>(nameof(Withdraw), request, CancellationToken.None);