import type { WebhookResponseSpec } from '../schemas/WebhookResponseSpec'; /** * Contains information about the webhooks */ export interface WebhookResponse { /** * @format int64 */ event_trigger_time?: number; is_enabled?: boolean; spec?: T0; webhook_identifier?: string; webhook_name?: string; }