/* 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; attributes: Array; shipmentWarehouseId: (number | null); shipmentWarehouseName: (string | null); billRequests?: Array; group?: (CardGroupSchema | null); };