@gobolt/models
Version:
This is a shared repository that includes models that should be shared across all BoxKnight services. Do not include anything for the controller, service or repository layers of your application in this package.
18 lines (17 loc) • 590 B
TypeScript
export declare class PickupResponse {
private estimateDay;
private estimateFrom;
private estimateTo;
private epochEstimateFrom;
private epochEstimateTo;
getEstimateDay: () => string;
setEstimateDay: (value: string) => void;
getEstimateFrom: () => string;
setEstimateFrom: (value: string) => void;
getEstimateTo: () => string;
setEstimateTo: (value: string) => void;
getEpochEstimateFrom: () => number;
setEpochEstimateFrom: (value: number) => void;
getEpochEstimateTo: () => number;
setEpochEstimateTo: (value: number) => void;
}