package messenger // Profile is the public information of a Facebook user. type Profile struct { Name string `json:"name"` FirstName string `json:"first_name"` LastName string `json:"last_name"` ProfilePicURL string `json:"profile_pic"` Locale string `json:"locale"` Timezone float64 `json:"timezone"` Gender string `json:"gender"` }