1
0
mirror of synced 2024-11-22 21:06:06 +03:00
messenger/profile.go
Aman Mangal d8d9b9886f Update timezone to be of float type (#24)
* Update timezone to be of float type

Reference: https://developers.facebook.com/docs/graph-api/reference/user
Fixes #23

* Update README
2017-01-23 09:23:21 -08:00

12 lines
347 B
Go

package messenger
// Profile is the public information of a Facebook user
type Profile struct {
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"`
}