def top_games(self, **kwargs) -> List['helix.Game']: return helix.Games(self.api).top(**kwargs)
def game(self) -> 'helix.Game': return helix.Games(self._api, id=int(self.game_id))[0]
def games(self, **kwargs) -> 'helix.Games': return helix.Games(self.api, **kwargs)