import { ColorResponse } from "./color-response"; import { TruckTypeResponse } from "./truck-type-response"; export interface TruckDispatchModalResponse { id?: number; truckNumber?: string | null; status?: number; owner?: string | null; year?: number | null; color?: ColorResponse | null; truckType?: TruckTypeResponse; allowedTrailerIds?: Array | null; name?: string; class?: string; folder?: string; subFolder?: string; logoName?: string; canOpenModal?: boolean; }