Skip to content

Instantly share code, notes, and snippets.

@mohae
Created March 6, 2016 23:02
Show Gist options
  • Select an option

  • Save mohae/28b7633bdfcaf45ce7f1 to your computer and use it in GitHub Desktop.

Select an option

Save mohae/28b7633bdfcaf45ce7f1 to your computer and use it in GitHub Desktop.
type Gamer struct {
Parameters `json:"parameters"`
Resource string `json:"resource"`
ResultSetss []ResultSets `json:"resultSets"`
}
type Parameters struct {
DayOffset string `json:"DayOffset"`
GameDate string `json:"GameDate"`
LeagueID string `json:"LeagueID"`
}
type ResultSets struct {
Headers []string `json:"headers"`
Name string `json:"name"`
RowSet []slice `json:"rowSet"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment