generated from PenaSide/GolangTemplate
14 lines
588 B
Go
14 lines
588 B
Go
package models
|
|
|
|
type GoogleUserInformation struct {
|
|
// The subject property contains the unique user identifier of the user who signed in
|
|
Subject string `json:"sub" bson:"Subject"`
|
|
Fullname string `json:"name" bson:"Fullname"`
|
|
GivenName string `json:"given_name" bson:"GivenName"`
|
|
FamilyName string `json:"family_name" bson:"FamilyName"`
|
|
AvatarURL string `json:"picture" bson:"AvatarURL"`
|
|
Email string `json:"email" bson:"Email"`
|
|
EmailVerified bool `json:"email_verified" bson:"EmailVerified"`
|
|
Locale string `json:"locale" bson:"Locale"`
|
|
}
|