Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

HomeTimelineResponseData.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

HomeTimelineResponseData

Properties

Name Type Description Notes
home HomeTimelineHome

Example

from twitter_openapi_python_generated.models.home_timeline_response_data import HomeTimelineResponseData

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

# convert the object into a dict
home_timeline_response_data_dict = home_timeline_response_data_instance.to_dict()
# create an instance of HomeTimelineResponseData from a dict
home_timeline_response_data_from_dict = HomeTimelineResponseData.from_dict(home_timeline_response_data_dict)

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