Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 978 Bytes

File metadata and controls

31 lines (22 loc) · 978 Bytes

Timeline

Properties

Name Type Description Notes
instructions List[InstructionUnion]
metadata Dict[str, object] [optional]
response_objects Dict[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]