From 457e45b0a8fdc30f7813eacb5fd13be1bea41c7a Mon Sep 17 00:00:00 2001 From: simus Date: Thu, 30 Jun 2022 13:40:12 +0500 Subject: [PATCH] added additional fields for instagram users, to Profile struct --- profile.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/profile.go b/profile.go index 52e909c..e893121 100644 --- a/profile.go +++ b/profile.go @@ -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"` }