/** * 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 */ /** * @nullable */ export type DocumentEntityBankAccount = { /** Account type determines which fields are used */ type?: 'iban' | 'us_domestic' | 'uk_domestic' | 'other'; /** * Display name for this account. Falls back to account number if not set * @nullable */ name?: string | null; /** * Bank name * @nullable */ bank_name?: string | null; /** * IBAN (for type=iban) * @nullable */ iban?: string | null; /** * Account number (for us_domestic, uk_domestic, other) * @nullable */ account_number?: string | null; /** * BIC/SWIFT code for international transfers * @nullable */ bic?: string | null; /** * US ABA routing number (for type=us_domestic) * @nullable */ routing_number?: string | null; /** * UK sort code (for type=uk_domestic) * @nullable */ sort_code?: string | null; } | null; //# sourceMappingURL=documentEntityBankAccount.d.ts.map