import { CourierActionType, StopType } from '@lml/cosmo-ts-data';
export interface PostCourierActionRequest {
    job: {
        refId: string;
    };
    courier: {
        refId: string;
    };
    type: CourierActionType;
    timestamp: string;
    user: string;
    stop?: {
        refId: string;
        type: StopType;
    };
}
