32 lines
		
	
	
		
			458 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			458 B
		
	
	
	
		
			Go
		
	
	
	
| package statsapi
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| )
 | |
| 
 | |
| type ScheduleParams struct {
 | |
| 	SportId string
 | |
| 	TeamId  string
 | |
| }
 | |
| 
 | |
| type ScheduleResponse struct {
 | |
| 	TotalGames           json.Number
 | |
| 	TotalGamesInProgress json.Number
 | |
| 	Dates                []date
 | |
| }
 | |
| 
 | |
| type date struct {
 | |
| 	TotalGames           json.Number
 | |
| 	TotalGamesInProgress json.Number
 | |
| 	Games                []game
 | |
| }
 | |
| 
 | |
| type game struct {
 | |
| 	GamePk  json.Number
 | |
| 	Content content
 | |
| }
 | |
| 
 | |
| type content struct {
 | |
| 	Link string
 | |
| }
 |