18 lines
433 B
Go
18 lines
433 B
Go
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"`
|
|
}
|
|
}
|