18 lines
512 B
TypeScript
18 lines
512 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { commonOrderStatus } from './commonOrderStatus';
|
|
export type orderNextStatusDto = {
|
|
orderStatus?: commonOrderStatus;
|
|
/**
|
|
* The expected completion date and time of the order.
|
|
*/
|
|
expectedCompleted?: string | null;
|
|
/**
|
|
* Indicates whether the order requires dispatching via the engine.
|
|
*/
|
|
dispatchRequired?: boolean | null;
|
|
};
|
|
|