Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.2 KB

File metadata and controls

37 lines (28 loc) · 1.2 KB

ThreadsUser

Properties

Name Type Description Notes
id str Threads URL slug (`username`).
user_id str Numeric Threads pk; surfaced for callers that want to skip the gateway-side username → pk stitch.
username str
full_name str
biography str
profile_pic_url str
follower_count float
is_verified bool
is_private bool

Example

from unifapi.models.threads_user import ThreadsUser

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

# convert the object into a dict
threads_user_dict = threads_user_instance.to_dict()
# create an instance of ThreadsUser from a dict
threads_user_from_dict = ThreadsUser.from_dict(threads_user_dict)

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