feat: cards, attributes and modules
This commit is contained in:
		
							
								
								
									
										26
									
								
								src/client/models/CardSummary.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								src/client/models/CardSummary.ts
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,26 @@
 | 
			
		||||
/* 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);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user