IConnectorWebhook.csβ’588 B
ο»Ώusing Api.DigitalPages.Interfaces.Models;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Api.DigitalPages.Interfaces.Connector
{
public interface IConnectorWebhook :
ISystemConnectorBaseCrudFlowV3<IWebhookEvent, WebhookEventOptions>,
ISystemConnectorBaseCrudFlowV3<IWebhookClient, WebhookClientOptions>
{
}
public class WebhookEventOptions : IBaseCrudOptions
{
List<string> FilterType { get; set; }
}
public class WebhookClientOptions : IBaseCrudOptions
{
}
}