Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 846 Bytes

File metadata and controls

29 lines (20 loc) · 846 Bytes

SelfThread

Properties

Name Type Description Notes
id_str str

Example

from twitter_openapi_python_generated.models.self_thread import SelfThread

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

# convert the object into a dict
self_thread_dict = self_thread_instance.to_dict()
# create an instance of SelfThread from a dict
self_thread_from_dict = SelfThread.from_dict(self_thread_dict)

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