export default interface ICustomerRating { readonly from: number; readonly to: number; readonly levels: ICustomerRatingLevel[]; } export interface ICustomerRatingLevel { readonly from: number; readonly to: number; readonly description: string; }