1
0
mirror of synced 2024-11-21 12:26:08 +03:00
messenger/profile.go

13 lines
385 B
Go

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