Allow auto approval of claims for pull payments (#1851)

* Allow auto approval of claims for pull payments

closes #1780

* fix
This commit is contained in:
Andrew Camilleri
2022-04-28 02:51:04 +02:00
committed by GitHub
parent 273bc78db3
commit ed1a7bb887
13 changed files with 76 additions and 22 deletions

View File

@@ -4,5 +4,5 @@ namespace BTCPayServer.Client.Models;
public class CreatePayoutThroughStoreRequest : CreatePayoutRequest
{
public string? PullPaymentId { get; set; }
public bool Approved { get; set; }
public bool? Approved { get; set; }
}