11 lines
188 B
Go
11 lines
188 B
Go
type ProfileData struct {
|
|
Name *string `json:"name"`
|
|
Emails []string `json:"emails"`
|
|
}
|
|
|
|
type Response struct {
|
|
User *struct {
|
|
Id string `json:"id"`
|
|
ProfileData
|
|
} `json:"user"`
|
|
} |