/** * Settings for creating an HMAC-authenticated webhook */ export interface WebhookHmacSettings { /** The authentication type for this webhook */ authType: "hmac"; /** The display name for this webhook */ name: string; /** The HTTPS callback URL that will be called when this webhook is triggered */ webhookUrl: string; }