Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

TimelineAddEntries

Properties

Name Type Description Notes
entries List[TimelineAddEntry]
type InstructionType

Example

from twitter_openapi_python_generated.models.timeline_add_entries import TimelineAddEntries

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

# convert the object into a dict
timeline_add_entries_dict = timeline_add_entries_instance.to_dict()
# create an instance of TimelineAddEntries from a dict
timeline_add_entries_from_dict = TimelineAddEntries.from_dict(timeline_add_entries_dict)

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