/** * 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 */ export interface StripeAppInvoice { /** Space Invoices invoice ID */ id: string; /** * Invoice number * @nullable */ number: string | null; /** Invoice status */ status: string; /** Invoice total amount */ total: number; /** Currency code */ currency: string; /** * Public URL to view the invoice * @nullable */ public_url: string | null; /** * Fiscalization/compliance status if applicable * @nullable */ fiscalization_status: string | null; /** When the invoice was created */ created_at: string; } //# sourceMappingURL=stripeAppInvoice.d.ts.map