Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 961 Bytes

File metadata and controls

29 lines (20 loc) · 961 Bytes

HomeTimelineHome

Properties

Name Type Description Notes
home_timeline_urt Timeline

Example

from twitter_openapi_python_generated.models.home_timeline_home import HomeTimelineHome

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

# convert the object into a dict
home_timeline_home_dict = home_timeline_home_instance.to_dict()
# create an instance of HomeTimelineHome from a dict
home_timeline_home_from_dict = HomeTimelineHome.from_dict(home_timeline_home_dict)

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