export interface PriceRatingThresholdPercentages {
    /** The percentage difference when the price is considered to be ‘high’ (market dependent) */
    high: number;
    /** The percentage difference when the price is considered to be ‘low’ (market dependent) */
    low: number;
}
