/** * 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 { DocumentEntityBankAccount } from './documentEntityBankAccount'; /** * Document issuer (entity) information */ export interface DocumentEntity { /** @nullable */ name?: string | null; /** @nullable */ email?: string | null; /** @nullable */ address?: string | null; /** @nullable */ address_2?: string | null; /** @nullable */ post_code?: string | null; /** @nullable */ city?: string | null; /** @nullable */ state?: string | null; /** @nullable */ country?: string | null; /** * @minLength 2 * @maxLength 2 * @nullable */ country_code?: string | null; /** @nullable */ tax_number?: string | null; /** @nullable */ tax_number_2?: string | null; /** @nullable */ company_number?: string | null; /** @nullable */ phone?: string | null; /** @nullable */ peppol_id?: string | null; /** @nullable */ is_end_consumer?: boolean | null; /** @nullable */ bank_account?: DocumentEntityBankAccount; } //# sourceMappingURL=documentEntity.d.ts.map