Timeline

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
instructionsList[InstructionUnion]
metadataDict[str, object][optional]
response_objectsDict[str, object][optional]

Example

from twitter_openapi_python_generated.models.timeline import Timeline

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

# convert the object into a dict
timeline_dict = timeline_instance.to_dict()
# create an instance of Timeline from a dict
timeline_from_dict = Timeline.from_dict(timeline_dict)

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