2020-11-13 06:01:51 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
|
|
{
|
|
|
|
public class StoreWebhookBaseData
|
|
|
|
{
|
|
|
|
public class AuthorizedEventsData
|
|
|
|
{
|
|
|
|
public bool Everything { get; set; } = true;
|
|
|
|
|
2023-12-01 10:50:05 +01:00
|
|
|
public string[] SpecificEvents { get; set; } = Array.Empty<string>();
|
2020-11-13 06:01:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool Enabled { get; set; } = true;
|
|
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
|
|
|
|
public string Secret { get; set; }
|
|
|
|
public bool AutomaticRedelivery { get; set; } = true;
|
|
|
|
public string Url { get; set; }
|
|
|
|
public AuthorizedEventsData AuthorizedEvents { get; set; } = new AuthorizedEventsData();
|
|
|
|
}
|
|
|
|
public class UpdateStoreWebhookRequest : StoreWebhookBaseData
|
|
|
|
{
|
|
|
|
}
|
|
|
|
public class CreateStoreWebhookRequest : StoreWebhookBaseData
|
|
|
|
{
|
|
|
|
}
|
|
|
|
public class StoreWebhookData : StoreWebhookBaseData
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
}
|
|
|
|
}
|