react-spa-template/src/lib/api/merchant/models/orderNextStatusDto.ts
2025-04-19 19:31:46 +02:00

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;
};