import type { SeatAncillary } from './SeatAncillary' import type { SeatCharacteristic } from './SeatCharacteristic' import type { SeatStatuses } from './SeatStatuses' export interface Seat { blocking_code?: string characteristics: SeatCharacteristic[] column: string eligible_ancillaries: SeatAncillary[] has_specific_message: boolean id: number is_exit_row: boolean occupied_traveler_id: number selected_ancillary?: SeatAncillary status: SeatStatuses traveler_eligibility?: Record type: string }