2016-04-15 03:16:52 +03:00
|
|
|
package messenger
|
|
|
|
|
|
|
|
// Profile is the public information of a Facebook user
|
|
|
|
type Profile struct {
|
2017-01-23 20:23:21 +03:00
|
|
|
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"`
|
2016-04-15 03:16:52 +03:00
|
|
|
}
|