import { WebhookEventErrorEnum } from './WebhookEventErrorEnum'; import { WebhookEventTriggerEnum } from './WebhookEventTriggerEnum'; export declare class WebhookEventItemResponse { 'uuid'?: string; 'name'?: string; 'type'?: WebhookEventTriggerEnum; 'httpStatusCode'?: number; 'error'?: WebhookEventErrorEnum; 'deliveryTime'?: Date; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }