import { Price } from '../../order/Price';
import { PricePlanFamily } from './PricePlanFamily';
/** Summary of the consumption of a service */
export interface Summary {
    /** Begin date of the returned consumption snapshot */
    beginDate: string;
    /** End date of the returned consumption snapshot */
    endDate: string;
    /** Consumption transaction ID */
    id: number;
    /** Order ID */
    orderId?: number;
    /** Total price of the service's consumption */
    price: Price;
    /** All the categories of commercial offers involved in the consumption of the service and their price */
    priceByPlanFamily: PricePlanFamily[];
    /** Service ID */
    serviceId: number;
}
//# sourceMappingURL=Summary.d.ts.map