12 lines
392 B
TypeScript
12 lines
392 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { ProductAndQuantitySchema } from './ProductAndQuantitySchema';
|
|
import type { ReceiptBoxSchema } from './ReceiptBoxSchema';
|
|
export type ReceiptPalletSchema = {
|
|
products: Array<ProductAndQuantitySchema>;
|
|
boxes: Array<ReceiptBoxSchema>;
|
|
};
|
|
|