import { Price } from '../Price';
import { Detail } from './element/Detail';
/** Element of consumption for resource */
export interface Element {
    /** List of consumption details for this planCode */
    details: Detail[];
    /** Identifier of the offer */
    planCode: string;
    /** Family of the offer */
    planFamily: string;
    /** Consumption amount price */
    price: Price;
    /** Consumption quantity */
    quantity: number;
}
//# sourceMappingURL=Element.d.ts.map