/** * @type PageShieldNotificationWebhookRequest: Page shield notification for the webhook request. * * @property webhookId: Webhook ID * - **Pattern:** /^.*$/ * * @property webhookUrl: Webhook URL. * - **Pattern:** /^.*$/ * * @property name: Webhook name * - **Pattern:** /^.*$/ * * @property secret: Webhook optional secret. * - **Pattern:** /^.*$/ * * @property enabled: Specifies whether or not the notification is enabled. * * @property zones: Zone names on which to filter notifications alerts. An empty array indicates all storefront zones. * */ export type PageShieldNotificationWebhookRequest = { webhookId?: string; webhookUrl: string; name: string; secret?: string; enabled?: boolean; zones?: Array; } & { [key: string]: any; };