Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 920 Bytes

File metadata and controls

29 lines (20 loc) · 920 Bytes

SearchTimeline

Properties

Name Type Description Notes
timeline Timeline

Example

from twitter_openapi_python_generated.models.search_timeline import SearchTimeline

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

# convert the object into a dict
search_timeline_dict = search_timeline_instance.to_dict()
# create an instance of SearchTimeline from a dict
search_timeline_from_dict = SearchTimeline.from_dict(search_timeline_dict)

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