import { Element } from './transaction/Element';
import { Price } from './Price';
/** List of consumptions recorded in a range */
export interface Transaction {
    /** Begin date */
    beginDate: string;
    /** Creation date */
    creationDate?: string;
    /** List of product plan code consumption */
    elements: Element[];
    /** End date */
    endDate?: string;
    /** Transaction ID */
    id?: number;
    /** Last update */
    lastUpdate?: string;
    /** Consumption amount price */
    price: Price;
    /** Service ID */
    serviceId: number;
}
//# sourceMappingURL=Transaction.d.ts.map