| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| username |
str |
|
|
| full_name |
str |
|
|
| profile_pic_url |
str |
|
|
| is_verified |
bool |
|
|
from unifapi.models.threads_post_user import ThreadsPostUser
# TODO update the JSON string below
json = "{}"
# create an instance of ThreadsPostUser from a JSON string
threads_post_user_instance = ThreadsPostUser.from_json(json)
# print the JSON string representation of the object
print(ThreadsPostUser.to_json())
# convert the object into a dict
threads_post_user_dict = threads_post_user_instance.to_dict()
# create an instance of ThreadsPostUser from a dict
threads_post_user_from_dict = ThreadsPostUser.from_dict(threads_post_user_dict)
[Back to Model list] [Back to API list] [Back to README]