/** Information about order follow up step */
export interface OrderFollowUpStep {
    /** Additional information about the step */
    comments: string[];
    /** Date when the step has been done */
    doneDate?: string;
    /** Unit used for the expected duration step */
    durationUnit: string;
    /** Expected duration step */
    expectedDuration: number;
    /** Order follow up step name */
    name: string;
    /** Status of the step */
    status: string;
}
//# sourceMappingURL=OrderFollowUpStep.d.ts.map