@climatepartner/climatepartner-api-sdk
Version:
The ClimatePartner API provides one uniform public API to customers of ClimatePartner.
19 lines (18 loc) • 815 B
TypeScript
/**
* 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 { 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: IRothoRequestLogisticsItemList;
material: IRothoRequestMaterialItem;
overheadAdmin: IRothoRequestOverheadItem;
overheadPackaging: IRothoRequestOverheadItem;
overheadProcess: IRothoRequestOverheadItem;
retailStorage: IRothoRequestOverheadItem;
}