interface IWebshopGamePayout { type: string; amount: number; } export interface IWebshopPricePoint { currencyCode: string; gamePayout: IWebshopGamePayout[]; id: number; isVisible: boolean; price: number; providerIds: number[]; providerType: string; } export interface IWebshopCategory { id: string; isSelected: string; items: IWebshopPricePoint[]; } export {};