/** * @type PageShieldNotificationWebhookUpdateRequest: Request body to update a page shield notification. You must include at least one of the following properties: webhookId, enabled, or zones. * * @property webhookId: Webhook ID * - **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 PageShieldNotificationWebhookUpdateRequest = { webhookId?: string; enabled?: boolean; zones?: Array; } & { [key: string]: any; };