mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
* Add ability to add description to pull payment close #2625 * Add API support * Remove 'Model.Description != "<br>"'
29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
using System;
|
|
using BTCPayServer.Client.JsonConverters;
|
|
using BTCPayServer.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class PullPaymentData
|
|
{
|
|
[JsonConverter(typeof(NBitcoin.JsonConverters.DateTimeToUnixTimeConverter))]
|
|
public DateTimeOffset StartsAt { get; set; }
|
|
[JsonConverter(typeof(NBitcoin.JsonConverters.DateTimeToUnixTimeConverter))]
|
|
public DateTimeOffset? ExpiresAt { get; set; }
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string Currency { get; set; }
|
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
|
public decimal Amount { get; set; }
|
|
[JsonConverter(typeof(TimeSpanJsonConverter.Seconds))]
|
|
public TimeSpan? Period { get; set; }
|
|
[JsonConverter(typeof(TimeSpanJsonConverter.Days))]
|
|
[JsonProperty("BOLT11Expiration")]
|
|
public TimeSpan BOLT11Expiration { get; set; }
|
|
public bool Archived { get; set; }
|
|
public string ViewLink { get; set; }
|
|
}
|
|
}
|