import { ValueByPeriod } from '../../period/domain/value-by-period'; import { ProductName } from '../../products/domain/product-name'; import { PriceByPeriod } from '../../period/domain/price-by-period'; export interface ProductPrice { name: ProductName; fee?: Number; energy?: ValueByPeriod | PriceByPeriod; power?: ValueByPeriod | PriceByPeriod; maintenance?: { withVat?: number; withoutVat?: number; }; }