sorare/football/team.go

19 lines
565 B
Go
Raw Permalink Normal View History

2024-03-08 10:48:21 +00:00
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"`
}