public Task <CryptoCurrencyWithdrawalResult> WithdrawCryptoCurrencyAsync(Guid walletId, NewCryptoCurrencyWithdrawal withdraw)
        {
            if (walletId == Guid.Empty)
            {
                throw new ArgumentException("walletId");
            }
            if (withdraw == null)
            {
                throw new ArgumentNullException("withdraw");
            }

            var request = new NewCryptoCurrencyWithdrawalMessageBuilder(walletId, withdraw);

            return(SendAsync(request).ReadAsAsync <CryptoCurrencyWithdrawalResult>());
        }
Example #2
0
 public NewCryptoCurrencyWithdrawalMessageBuilder(Guid walletId, NewCryptoCurrencyWithdrawal withdrawal)
 {
     _walletId   = walletId;
     _withdrawal = withdrawal;
 }