solvice-js-client
Version:
A JavaScript client to access the Solvice api.
23 lines (19 loc) • 466 B
text/typescript
import {ILocation} from "./location";
export interface IFleetUnit {
name: string;
startlocation: string;
endlocation?: string;
capacity?: number;
shiftstart?: number;
shiftend?: number;
breakstart?: number;
breakend?: number;
breakduration?: number;
maxminutes?: number;
category?: string;
type?: string;
}
export interface IVrpFleetUnit extends IFleetUnit {
}
export interface IPdpFleetUnit extends IFleetUnit {
}