/**
 * This file was generated by st-open-api
 */
import { IRothoWeightUnit } from './i-rotho-weight-unit';
import { IValueWithUnit } from './i-value-with-unit';
export interface IRothoResponseOverheadItem {
    choiceDescription?: string;
    cpId: string;
    description?: string;
    emissionFactorLastModified?: string;
    emissions: IValueWithUnit;
    isChoiceKnown: boolean;
    type: string;
    unit: IRothoWeightUnit;
    weight: number;
}
