31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { BaseMarketplaceSchema } from './BaseMarketplaceSchema';
|
|
import type { BoardSchema } from './BoardSchema';
|
|
import type { CardAttributeSchema } from './CardAttributeSchema';
|
|
import type { CardBillRequestSchema } from './CardBillRequestSchema';
|
|
import type { CardGroupSchema } from './CardGroupSchema';
|
|
import type { CardTagSchema } from './CardTagSchema';
|
|
import type { StatusSchema } from './StatusSchema';
|
|
export type CardSummary = {
|
|
id: number;
|
|
name: string;
|
|
clientName: (string | null);
|
|
createdAt: string;
|
|
status: StatusSchema;
|
|
board: BoardSchema;
|
|
totalPrice: number;
|
|
rank: number;
|
|
baseMarketplace?: (BaseMarketplaceSchema | null);
|
|
totalProducts: number;
|
|
tags: Array<CardTagSchema>;
|
|
attributes: Array<CardAttributeSchema>;
|
|
shipmentWarehouseId: (number | null);
|
|
shipmentWarehouseName: (string | null);
|
|
billRequest?: (CardBillRequestSchema | null);
|
|
group?: (CardGroupSchema | null);
|
|
};
|
|
|