othr
This commit is contained in:
10
src/client/models/DealProductSchema.ts
Normal file
10
src/client/models/DealProductSchema.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ProductSchema } from './ProductSchema';
|
||||
export type DealProductSchema = {
|
||||
product: ProductSchema;
|
||||
quantity: number;
|
||||
};
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { DealProductSchema } from './DealProductSchema';
|
||||
import type { DealServiceSchema } from './DealServiceSchema';
|
||||
export type DealSchema = {
|
||||
id: number;
|
||||
@@ -10,5 +11,6 @@ export type DealSchema = {
|
||||
createdAt: string;
|
||||
currentStatus: number;
|
||||
services: Array<DealServiceSchema>;
|
||||
products: Array<DealProductSchema>;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user