Lightweight Instagram user shape returned inside lists (followers, post authors, comment authors). Lacks counts; call /users/{id} for the full profile.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| user_id | str | ||
| username | str | ||
| full_name | str | ||
| is_verified | bool | ||
| is_private | bool | ||
| profile_pic_url | str |
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)