Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Update timezone to be of float type
Browse files Browse the repository at this point in the history
  • Loading branch information
mangalaman93 authored and Aman Mangal committed Jan 22, 2017
1 parent 87975a1 commit 1145fe3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ 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 int `json:"timezone"`
Gender string `json:"gender"`
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"`
}

0 comments on commit 1145fe3

Please sign in to comment.