27 lines
		
	
	
		
			893 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			893 B
		
	
	
	
		
			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 { CardBillRequestSchema } from './CardBillRequestSchema';
 | 
						|
import type { CardGroupSchema } from './CardGroupSchema';
 | 
						|
import type { StatusSchema } from './StatusSchema';
 | 
						|
export type CardSummary = {
 | 
						|
    id: number;
 | 
						|
    name: string;
 | 
						|
    clientName: string;
 | 
						|
    createdAt: string;
 | 
						|
    status: StatusSchema;
 | 
						|
    board: BoardSchema;
 | 
						|
    totalPrice: number;
 | 
						|
    rank: number;
 | 
						|
    baseMarketplace?: (BaseMarketplaceSchema | null);
 | 
						|
    totalProducts: number;
 | 
						|
    shipmentWarehouseId: (number | null);
 | 
						|
    shipmentWarehouseName: (string | null);
 | 
						|
    billRequest?: (CardBillRequestSchema | null);
 | 
						|
    group?: (CardGroupSchema | null);
 | 
						|
};
 | 
						|
 |