Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 959 Bytes

File metadata and controls

29 lines (20 loc) · 959 Bytes

BookmarksTimeline

Properties

Name Type Description Notes
timeline Timeline

Example

from twitter_openapi_python_generated.models.bookmarks_timeline import BookmarksTimeline

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

# convert the object into a dict
bookmarks_timeline_dict = bookmarks_timeline_instance.to_dict()
# create an instance of BookmarksTimeline from a dict
bookmarks_timeline_from_dict = BookmarksTimeline.from_dict(bookmarks_timeline_dict)

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