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"` }