/** * 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 { SendDocument200Status } from './sendDocument200Status'; export type SendDocument200 = { /** AWS SES message ID for tracking */ message_id: string; /** Email send status */ status: SendDocument200Status; /** Recipient email address */ to: string; /** Email subject */ subject: string; /** Public URL for viewing the invoice online (if document_id was provided) */ shareable_link?: string; /** True when sandbox testing used the send flow without delivering the email. */ sandbox_skip_delivery?: boolean; }; //# sourceMappingURL=sendDocument200.d.ts.map