/** * 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 */ /** * Issuer (seller) information */ export type TransactionTypeCheckRequestIssuer = { /** Country name (e.g., 'Germany', 'Deutschland', 'Slovenija'). 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; /** Whether the issuer is a tax subject. Set false for small businesses or tax-exempt organizations. */ is_tax_subject?: boolean; }; //# sourceMappingURL=transactionTypeCheckRequestIssuer.d.ts.map