/** * 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 */ /** * Register a supplier for e-invoicing onboarding (starts KYC process) */ export interface RegisterEInvoicingSupplierRequest { /** * Legal company name as registered * @minLength 1 * @maxLength 255 */ company_name: string; /** * VAT identification number * @maxLength 50 */ vat_number?: string; /** * Company registration number (e.g., SIRET for France) * @maxLength 50 */ company_number?: string; /** * Bank account IBAN * @maxLength 50 */ iban?: string; /** * Street address * @maxLength 500 */ address?: string; /** * City * @maxLength 100 */ city?: string; /** * Postal code * @maxLength 20 */ post_code?: string; /** * ISO 3166-1 alpha-2 country code * @minLength 2 * @maxLength 2 */ country_code: string; /** * Contact email for KYC communication * @maxLength 255 */ contact_email?: string; /** * Contact phone number * @maxLength 50 */ contact_phone?: string; } //# sourceMappingURL=registerEInvoicingSupplierRequest.d.ts.map