sorare/nbaplayer.go

18 lines
433 B
Go
Raw Normal View History

2024-03-08 10:48:21 +00:00
package sorare
import (
"time"
)
type NbaPlayer struct {
Id string `graphql:"id"`
Slug string `graphql:"slug"`
DisplayName string `graphql:"displayName"`
BirthDate time.Time `graphql:"birthDate"`
BirthPlaceCountry string `graphql:"birthPlaceCountry"`
AvatarImageUrl string `graphql:"avatarImageUrl"`
Team struct {
Slug string `graphql:"slug"`
}
}