13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { ShippingProductSchema } from './ShippingProductSchema';
|
|
export type BoxSchema = {
|
|
id: number;
|
|
palletId: (number | null);
|
|
cardId: (number | null);
|
|
shippingProducts: Array<ShippingProductSchema>;
|
|
};
|
|
|