import type { PageShieldNotificationWebhookResponse } from './PageShieldNotificationWebhookResponse'; /** * @type PageShieldNotificationWebhookEnvelope: * * @property data: * */ export type PageShieldNotificationWebhookEnvelope = { data: PageShieldNotificationWebhookResponse; } & { [key: string]: any; };