15 lines
346 B
TypeScript
15 lines
346 B
TypeScript
/**
|
|
* Generated by orval v8.8.0 🍺
|
|
* Do not edit manually.
|
|
* OpenAPI spec version: 0.0.0
|
|
*/
|
|
import type { Status0b2Enum } from "./status0b2Enum";
|
|
|
|
export interface OrderMini {
|
|
readonly id: number;
|
|
readonly status: Status0b2Enum;
|
|
/** @pattern ^-?\d{0,8}(?:\.\d{0,2})?$ */
|
|
readonly total_price: string;
|
|
readonly created_at: Date;
|
|
}
|