1
0
Fork 0
mirror of synced 2025-04-04 21:53:37 +03:00

added additional fields for instagram users, to Profile struct

This commit is contained in:
simus 2022-06-30 13:40:12 +05:00 committed by Neur0toxine
parent 51c7c1bd0e
commit 457e45b0a8

View file

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