customer/internal/models/vk.go
2023-05-16 04:12:34 +03:00

19 lines
865 B
Go

package models
type VKUserInformation struct {
ID int64 `json:"id" bson:"id"`
FirstName string `json:"first_name" bson:"firstname"`
LastName string `json:"last_name" bson:"lastname"`
Photo string `json:"photo_400_orig" bson:"avatar"`
Sex int `json:"sex" bson:"sex"`
Domain string `json:"domain" bson:"domain"`
ScreenName string `json:"screen_name" bson:"screen_name"`
Birthday string `json:"bdate" bson:"birthday"`
PhotoID string `json:"photo_id" bson:"photo_id"`
FollowersCount int `json:"followers_count" bson:"followers_count"`
HomeTown string `json:"home_town" bson:"home_town"`
Timezone float64 `json:"timezone" bson:"timezone"`
MobilePhone string `json:"mobile_phone" bson:"mobile_phone"`
Email string `json:"email" bson:"email"`
}