Skip to content

Latest commit

History

History
31 lines (22 loc) · 1019 Bytes

File metadata and controls

31 lines (22 loc) · 1019 Bytes

TimelineAddEntry

Properties

NameTypeDescriptionNotes
contentContentUnion
entry_idstr
sort_indexstr

Example

fromtwitter_openapi_python_generated.models.timeline_add_entryimportTimelineAddEntry# TODO update the JSON string belowjson="{}"# create an instance of TimelineAddEntry from a JSON stringtimeline_add_entry_instance=TimelineAddEntry.from_json(json)
# print the JSON string representation of the objectprint(TimelineAddEntry.to_json())
# convert the object into a dicttimeline_add_entry_dict=timeline_add_entry_instance.to_dict()
# create an instance of TimelineAddEntry from a dicttimeline_add_entry_from_dict=TimelineAddEntry.from_dict(timeline_add_entry_dict)

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