added additional fields for instagram users, to Profile struct
This commit is contained in:
parent
51c7c1bd0e
commit
457e45b0a8
1 changed files with 6 additions and 0 deletions
|
@ -9,4 +9,10 @@ type Profile struct {
|
|||
Locale string `json:"locale"`
|
||||
Timezone float64 `json:"timezone"`
|
||||
Gender string `json:"gender"`
|
||||
|
||||
// instagram user profile
|
||||
Username string `json:"username,omitempty"`
|
||||
IsPrivate bool `json:"is_private,omitempty"`
|
||||
FollowCount int32 `json:"follow_count,omitempty"`
|
||||
FollowedByCount int32 `json:"followed_by_count,omitempty"`
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue