sorare/football/team.go

19 lines
565 B
Go

package football
type Team struct {
ActiveCompetitions []struct {
Slug string `graphql:"slug"`
} `graphql:"activeCompetitions"`
Code string `graphql:"code"`
Country struct {
Slug string `graphql:"slug"`
}
Founded string `graphql:"founded"`
Name string `graphql:"name"`
PictureSecondaryUrl string `graphql:"pictureSecondaryUrl"`
PictureUrl string `graphql:"pictureUrl"`
Ready bool `graphql:"ready"`
ShortName string `graphql:"shortName"`
Slug string `graphql:"slug"`
}