import { Price } from '../../order/Price';
/** Representation of a product renew pricing */
export interface RenewForecastDetail {
    /** Detail description */
    description?: string;
    /** Quantity */
    quantity: number;
    /** Associated service name */
    serviceName: string;
    /** Total price */
    totalPrice: Price;
    /** Price for one unit */
    unitPrice: Price;
}
//# sourceMappingURL=RenewForecastDetail.d.ts.map