Files
Fulfillment-Frontend/src/client/models/PalletSchema.ts

13 lines
379 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { BoxSchema } from './BoxSchema';
import type { ShippingProductSchema } from './ShippingProductSchema';
export type PalletSchema = {
id: number;
boxes: Array<BoxSchema>;
shippingProducts: Array<ShippingProductSchema>;
};