mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
438dcc4c6f
* Add Greenfield API endpoint for pull payment LNURL items close #4365 * Rename GetLNURLs to GetPullPaymentLNURL * update "ln-url-not-supported" to "lnurl-not-supported" * remove hardcoding of "BTC" * update "PullPayments_LNURL" to "PullPayments_GetPullPaymentLNURL" * update description of 400 status code response Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
9 lines
180 B
C#
9 lines
180 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class PullPaymentLNURL
|
|
{
|
|
public string LNURLBech32 { get; set; }
|
|
public string LNURLUri { get; set; }
|
|
}
|
|
}
|