HomeTimelineResponseData

May 7, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
homeHomeTimelineHome

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]