rtech-struct
Version:
Rtech Platform Superstruct Entity
20 lines (17 loc) • 438 B
text/typescript
import Address from './Address';
import Contact from './Contact';
type Point = {
key: string,
address: Address,
point_types?: string[],
type: 'sfu/point',
arrival_from: string,
arrival_until?: string,
real_arrival?: string,
real_departure?: string,
contact?: Contact,
packages_to_load: string[],
packages_to_unload: string[],
comment?: string,
};
export default Point;