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

Name Type Description Notes
content ContentUnion
entry_id str
sort_index str

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]