import { WebhookEventErrorEnum } from './WebhookEventErrorEnum'; import { WebhookEventTriggerEnum } from './WebhookEventTriggerEnum'; export declare class WebhookEventDetailsResponse { 'uuid'?: string; 'name'?: string; 'type'?: WebhookEventTriggerEnum; 'httpStatusCode'?: number; 'error'?: WebhookEventErrorEnum; 'deliveryTime'?: Date; 'url'?: string; 'signature'?: string; 'requestBody'?: string; 'responseBody'?: string; 'responseHeaders'?: string; 'eventTime'?: 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(); }