/** * 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 { FursElectronicDevice } from './fursElectronicDevice'; import type { MovablePremise } from './movablePremise'; import type { RealEstatePremise } from './realEstatePremise'; export interface FursBusinessPremise { id: string; entity_id: string; business_premise_name: string; type: string; real_estate: RealEstatePremise | null; movable_premise: MovablePremise | null; is_active: boolean; registered_at: string; /** @nullable */ closed_at: string | null; created_at: string; updated_at: string; Devices?: FursElectronicDevice[]; } //# sourceMappingURL=fursBusinessPremise.d.ts.map