GreenField: Cross-implemenation Lightning Node API (#1566)

* GreenField: Cross-implemenation Lightning Node API

* switch to hard unrsstricted check

* fix

* set LightningPrivateRouteHints in swagger + stores api

* add priv route hint

* rename models and add swagger defs to models
This commit is contained in:
Andrew Camilleri
2020-05-29 02:00:13 +02:00
committed by GitHub
parent 114ab98059
commit 1e3f62718d
22 changed files with 1140 additions and 21 deletions

View File

@@ -0,0 +1,17 @@
using System;
using BTCPayServer.Lightning;
using BTCPayServer.Lightning.JsonConverters;
using Newtonsoft.Json;
namespace BTCPayServer.Client.Models
{
public class CreateLightningInvoiceRequest
{
[JsonProperty(ItemConverterType = typeof(LightMoneyJsonConverter))]
public LightMoney Amount { get; set; }
public string Description { get; set; }
public TimeSpan Expiry { get; set; }
public bool LightningPrivateRouteHints { get; set; }
}
}