Add redirectURL to create invoice on Greenfield

This commit is contained in:
nicolas.dorier
2020-12-09 23:20:13 +09:00
parent febf8ac5b3
commit e65d42bd61
3 changed files with 12 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ namespace BTCPayServer.Client.Models
public class CheckoutOptions
{
[JsonConverter(typeof(StringEnumConverter))]
public SpeedPolicy? SpeedPolicy { get; set; }
@@ -30,6 +31,9 @@ namespace BTCPayServer.Client.Models
public TimeSpan? Monitoring { get; set; }
public double? PaymentTolerance { get; set; }
[JsonProperty("redirectURL")]
public string RedirectURL { get; set; }
}
}
}