@climatepartner/climatepartner-api-sdk
Version:
The ClimatePartner API provides one uniform public API to customers of ClimatePartner.
16 lines (15 loc) • 768 B
TypeScript
/**
* 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;
}