Beispiel #1
0
 public BitFlyerResponse <BfWithdrawResponse> Withdraw(BfWithdrawRequest request)
 => WithdrawAsync(request, CancellationToken.None).Result;
Beispiel #2
0
        public BitFlyerResponse <BfWithdrawResponse> Withdraw(BfWithdrawRequest request)
        {
            var jsonRequest = JsonConvert.SerializeObject(request, _jsonSettings);

            return(PrivatePost <BfWithdrawResponse>(nameof(Withdraw), jsonRequest));
        }
Beispiel #3
0
 /// <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);