func (s *Steam) OwnedGames(steamID string) (*OwnedGames, error) {
    uri, err := s.GenerateRequestURI("https://api.steampowered.com/IPlayerService/GetOwnedGames/v0001/", map[string]string{
        "steamid": steamID,
    })
    if err != nil {