/** * 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 { CustomerBaseMetadata } from './customerBaseMetadata'; import type { CustomerBaseVies } from './customerBaseVies'; /** * Customer information */ export interface CustomerBase { /** @maxLength 36 */ id: string; /** @maxLength 255 */ name: string; /** * @maxLength 500 * @nullable */ address?: string | null; /** * @maxLength 500 * @nullable */ address_2?: string | null; /** * @maxLength 20 * @nullable */ post_code?: string | null; /** * @maxLength 100 * @nullable */ city?: string | null; /** * @maxLength 100 * @nullable */ state?: string | null; /** * @maxLength 100 * @nullable */ country?: string | null; /** * @maxLength 2 * @nullable */ country_code?: string | null; /** * @maxLength 50 * @nullable */ tax_number?: string | null; /** * @maxLength 50 * @nullable */ company_number?: string | null; /** * @maxLength 50 * @nullable */ peppol_id?: string | null; /** * @maxLength 255 * @nullable */ email?: string | null; is_tax_subject: boolean; is_end_consumer: boolean; /** @maxLength 36 */ entity_id: string; vies?: CustomerBaseVies; metadata: CustomerBaseMetadata; /** @nullable */ deleted_at?: string | null; created_at: string; updated_at: string; } //# sourceMappingURL=customerBase.d.ts.map