import { IEntity } from "./entity"; import { IDevice } from "./device"; /** * A {@link IDevice} and date pair that represents the last time a particular {@link * IRouteExtract} has been executed for a specific vehicle. * * @deprecated */ export interface IRouteExtract extends IEntity { /** Gets or sets the vehicle object to which the last date of the extract applies. */ device: IDevice; /** Gets or sets the date when the extract has been completed for this vehicle. */ lastExtractDateTime?: Date; } //# sourceMappingURL=route_extract.d.ts.map