Created
March 6, 2016 23:02
-
-
Save mohae/28b7633bdfcaf45ce7f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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