/**
 * This file was generated by st-open-api
 */
import { IRothoRequestEndOfLifeItem } from './i-rotho-request-end-of-life-item';
import { IRothoRequestLogisticsItemList } from './i-rotho-request-logistics-item-list';
import { IRothoRequestLogisticsItem } from './i-rotho-request-logistics-item';
import { IRothoRequestMaterialItem } from './i-rotho-request-material-item';
import { IRothoRequestOverheadItem } from './i-rotho-request-overhead-item';
export interface IRothoRequestItem {
    endOfLife: IRothoRequestEndOfLifeItem;
    itemId: string;
    logisticsInbound: IRothoRequestLogisticsItemList;
    logisticsOutbound: IRothoRequestLogisticsItem;
    material: IRothoRequestMaterialItem;
    overheadAdmin: IRothoRequestOverheadItem;
    overheadPackaging: IRothoRequestOverheadItem;
    overheadProcess: IRothoRequestOverheadItem;
    retailStorage: IRothoRequestOverheadItem;
}
