Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 974 Bytes

File metadata and controls

29 lines (20 loc) · 974 Bytes

TimelineResponse

Properties

Name Type Description Notes
data HomeTimelineResponseData

Example

from twitter_openapi_python_generated.models.timeline_response import TimelineResponse

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

# convert the object into a dict
timeline_response_dict = timeline_response_instance.to_dict()
# create an instance of TimelineResponse from a dict
timeline_response_from_dict = TimelineResponse.from_dict(timeline_response_dict)

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