/** * 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 */ /** * Customer (buyer) information */ export type TransactionTypeCheckRequestCustomer = { /** Country name (e.g., 'Germany', 'Deutschland'). Automatically resolved to country_code. */ country?: string; /** * ISO 3166-1 alpha-2 country code. If provided, takes precedence over country name. * @minLength 2 * @maxLength 2 */ country_code?: string; /** Customer tax number (with or without country prefix) */ tax_number?: string; /** Whether the customer is an end consumer (B2C override). When true, forces B2C classification for non-EU transactions even if customer has a tax number. For intra-EU, VIES validation takes precedence. */ is_end_consumer?: boolean; }; //# sourceMappingURL=transactionTypeCheckRequestCustomer.d.ts.map