/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Space Invoices API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * OpenAPI spec version: 1.0.0 */ import type { WebhookDeliveryRequestBody } from './webhookDeliveryRequestBody'; import type { WebhookDeliveryStatus } from './webhookDeliveryStatus'; /** * Webhook delivery attempt record */ export interface WebhookDelivery { /** @maxLength 36 */ id: string; /** @maxLength 36 */ webhook_id: string; /** @maxLength 36 */ entity_id: string; /** @maxLength 100 */ event_type: string; status: WebhookDeliveryStatus; request_body: WebhookDeliveryRequestBody; /** * @minimum -2147483648 * @maximum 2147483647 * @nullable */ response_status?: number | null; /** * @maxLength 10000 * @nullable */ response_body?: string | null; /** * @maxLength 2000 * @nullable */ error_message?: string | null; /** * @minimum -2147483648 * @maximum 2147483647 */ attempt: number; /** * @minimum -2147483648 * @maximum 2147483647 */ max_attempts: number; /** @nullable */ next_retry_at?: string | null; /** * @minimum -2147483648 * @maximum 2147483647 * @nullable */ duration_ms?: number | null; created_at: string; /** @nullable */ completed_at?: string | null; } //# sourceMappingURL=webhookDelivery.d.ts.map