mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
50 lines
1.4 KiB
C#
50 lines
1.4 KiB
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using Newtonsoft.Json.Converters;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class WithdrawalResponseData
|
||
|
{
|
||
|
public string Asset { get; }
|
||
|
public string PaymentMethod { get; }
|
||
|
public List<LedgerEntryData> LedgerEntries { get; }
|
||
|
public string WithdrawalId { get; }
|
||
|
public string AccountId { get; }
|
||
|
public string CustodianCode { get; }
|
||
|
|
||
|
[JsonConverter(typeof(StringEnumConverter))]
|
||
|
public WithdrawalStatus Status { get; }
|
||
|
|
||
|
public DateTimeOffset CreatedTime { get; }
|
||
|
|
||
|
public string TransactionId { get; }
|
||
|
|
||
|
public string TargetAddress { get; }
|
||
|
|
||
|
public WithdrawalResponseData(string paymentMethod, string asset, List<LedgerEntryData> ledgerEntries, string withdrawalId, string accountId,
|
||
|
string custodianCode, WithdrawalStatus status, DateTimeOffset createdTime, string targetAddress, string transactionId)
|
||
|
{
|
||
|
PaymentMethod = paymentMethod;
|
||
|
Asset = asset;
|
||
|
LedgerEntries = ledgerEntries;
|
||
|
WithdrawalId = withdrawalId;
|
||
|
AccountId = accountId;
|
||
|
CustodianCode = custodianCode;
|
||
|
TargetAddress = targetAddress;
|
||
|
TransactionId = transactionId;
|
||
|
Status = status;
|
||
|
CreatedTime = createdTime;
|
||
|
}
|
||
|
|
||
|
|
||
|
public enum WithdrawalStatus
|
||
|
{
|
||
|
Unknown = 0,
|
||
|
Queued = 1,
|
||
|
Complete = 2,
|
||
|
Failed = 3
|
||
|
}
|
||
|
}
|