Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.26 KB

File metadata and controls

36 lines (27 loc) · 1.26 KB

InstagramUserPreview

Lightweight Instagram user shape returned inside lists (followers, post authors, comment authors). Lacks counts; call /users/{id} for the full profile.

Properties

Name Type Description Notes
id str
user_id str
username str
full_name str
is_verified bool
is_private bool
profile_pic_url str

Example

from unifapi.models.instagram_user_preview import InstagramUserPreview

# TODO update the JSON string below
json = "{}"
# create an instance of InstagramUserPreview from a JSON string
instagram_user_preview_instance = InstagramUserPreview.from_json(json)
# print the JSON string representation of the object
print(InstagramUserPreview.to_json())

# convert the object into a dict
instagram_user_preview_dict = instagram_user_preview_instance.to_dict()
# create an instance of InstagramUserPreview from a dict
instagram_user_preview_from_dict = InstagramUserPreview.from_dict(instagram_user_preview_dict)

[Back to Model list] [Back to API list] [Back to README]