TimelineAddEntry

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
contentContentUnion
entry_idstr
sort_indexstr

Example

from twitter_openapi_python_generated.models.timeline_add_entry import TimelineAddEntry

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

# convert the object into a dict
timeline_add_entry_dict = timeline_add_entry_instance.to_dict()
# create an instance of TimelineAddEntry from a dict
timeline_add_entry_from_dict = TimelineAddEntry.from_dict(timeline_add_entry_dict)

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