/** * @type PageShieldNotificationWebhookResponse: Page shield notification for the webhook response. * * @property id: Webhook ID. * - **Pattern:** /^.*$/ * * @property name: Webhook name. * - **Pattern:** /^.*$/ * * @property webhookUrl: Webhook URL. * - **Pattern:** /^.*$/ * * @property type: Webhook type. * - **Pattern:** /^.*$/ * * @property createdAt: Timestamp of webhook creation. * * @property lastSuccess: Timestamp of the last successful notification. * * @property lastFailure: Timestamp of the last failed notification. * * @property enabled: Specifies whether or not the notification is enabled. * * @property zones: Zone IDs on which to filter notifications alerts. * */ export type PageShieldNotificationWebhookResponse = { id: string; name: string; webhookUrl: string; type: string; createdAt: string; lastSuccess?: string; lastFailure?: string; enabled?: boolean; zones?: Array; } & { [key: string]: any; };