Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

TimelineReplaceEntry

Properties

Name Type Description Notes
entry TimelineAddEntry
entry_id_to_replace str
type InstructionType

Example

from twitter_openapi_python_generated.models.timeline_replace_entry import TimelineReplaceEntry

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

# convert the object into a dict
timeline_replace_entry_dict = timeline_replace_entry_instance.to_dict()
# create an instance of TimelineReplaceEntry from a dict
timeline_replace_entry_from_dict = TimelineReplaceEntry.from_dict(timeline_replace_entry_dict)

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