interface AchRelatedGame { /** ID of the game on Smartico side */ ach_game_id: number; /** ID of the game on operator side */ ext_game_id: string; game_public_meta: { name: string; link: string; image: string; enabled: boolean; game_categories?: string[]; game_provider?: string; mobile_spec_link?: string; priority?: number; }; } export { AchRelatedGame };