react-spa-template/src/lib/api/merchant/models/QueryResultDto_OrderViewDto_.ts

15 lines
544 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { orderViewDto } from './orderViewDto';
/**
* The UTC server time is included in the response to allow the client to know (by the server's clock) when the query was performed.
* It is important to populate this field with the server's time at the beginning of the query execution.
*/
export type QueryResultDto_OrderViewDto_ = {
serverTimeUtc?: string;
results?: Array<orderViewDto>;
};