/** * 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 { AccountWebhookDeliveryRequestBody } from './accountWebhookDeliveryRequestBody'; import type { AccountWebhookDeliveryStatus } from './accountWebhookDeliveryStatus'; /** * Account webhook delivery attempt record */ export interface AccountWebhookDelivery { /** @maxLength 36 */ id: string; /** @maxLength 36 */ account_webhook_id: string; /** @maxLength 36 */ account_id: string; /** * @maxLength 36 * @nullable */ entity_id?: string | null; /** @maxLength 100 */ event_type: string; status: AccountWebhookDeliveryStatus; request_body: AccountWebhookDeliveryRequestBody; /** * @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=accountWebhookDelivery.d.ts.map