/**
 * This file was generated by st-open-api
 */
import { IAdditionalDataPPPMaterialWeightBatchResponse } from './interface/i-additional-data-p-p-p-material-weight-batch-response';
import { IItemsPPPMaterialWeightBatchResponse } from './interface/i-items-p-p-p-material-weight-batch-response';
import { IPartsPPPMaterialWeightBatchResponse } from './interface/i-parts-p-p-p-material-weight-batch-response';
import { IValueWithUnit } from './i-value-with-unit';
export interface IPPPMaterialWeightBatchResponse {
    additionalData?: IAdditionalDataPPPMaterialWeightBatchResponse;
    batchDescription?: string;
    batchId: string;
    items: Array<IItemsPPPMaterialWeightBatchResponse>;
    parts?: IPartsPPPMaterialWeightBatchResponse;
    total: IValueWithUnit;
}
