13 lines
395 B
Go
13 lines
395 B
Go
package domain
|
|
|
|
// GoogleUserInfo is a data type which contains a mapping of the Google User Info API call.
|
|
type GoogleUserInfo struct {
|
|
Id string `json:"id"`
|
|
Email string `json:"email"`
|
|
Verified bool `json:"verified_email"`
|
|
Name string `json:"name"`
|
|
GivenName string `json:"given_name"`
|
|
FamilyName string `json:"family_name"`
|
|
Picture string `json:"picture"`
|
|
}
|