moodlink-gofiber / models /google_auth.go
chandafa's picture
deployment v0.1
1b18b9e
raw
history blame contribute delete
329 Bytes
package models
type GoogleAuthRequest struct {
IDToken string `json:"id_token" validate:"required"`
}
type GoogleTokenInfo struct {
Sub string `json:"sub"`
Email string `json:"email"`
EmailVerified bool `json:"email_verified"`
Name string `json:"name"`
Picture string `json:"picture"`
}