Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/Nexus.Crypto.SDK/Models/CallbacksModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,33 @@ public class LabelNotificationConfirmationResponse
public class LabelNotificationTxSendoutResponse
{
public string TxId { get; set; }
public decimal? CryptoAmount { get; set; }
public string DestinationAddress { get; set; }
}

public class LabelNotificationTxBrokerBuyResponse
{
public string TxId { get; set; }
public decimal? CryptoAmount { get; set; }
public string DestinationAddress { get; set; }
}

public class LabelNotificationTxReceiveInResponse
{
public string TxId { get; set; }
public decimal? ReceivedFiatValue { get; set; }
public decimal? ReceivedCryptoAmount { get; set; }
public string ReceiveAddress { get; set; }
public string BlockchainMessage { get; set; }
}

public class LabelNotificationTxBrokerSellResponse
{
public string TxId { get; set; }
public decimal? ReceivedFiatValue { get; set; }
public decimal? ReceivedCryptoAmount { get; set; }
public string ReceiveAddress { get; set; }
public string BlockchainMessage { get; set; }
}

public class LabelNotificationTxSellResponse
Expand Down Expand Up @@ -75,6 +96,8 @@ public class LabelNotificationResponse
public LabelNotificationTxMerchantResponse Merchant { get; set; }
public LabelNotificationTxSendoutResponse Sendout { get; set; }
public LabelNotificationTxReceiveInResponse ReceiveIn { get; set; }
public LabelNotificationTxBrokerBuyResponse BrokerBuy { get; set; }
public LabelNotificationTxBrokerSellResponse BrokerSell { get; set; }
public LabelNotificationConfirmationResponse Confirmations { get; set; }
public string ValidUntil { get; set; }
}
Loading