Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 965 Bytes

File metadata and controls

30 lines (21 loc) · 965 Bytes

TimelineResult

Properties

Name Type Description Notes
id str [optional]
timeline Timeline [optional]

Example

from twitter_openapi_python_generated.models.timeline_result import TimelineResult

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

# convert the object into a dict
timeline_result_dict = timeline_result_instance.to_dict()
# create an instance of TimelineResult from a dict
timeline_result_from_dict = TimelineResult.from_dict(timeline_result_dict)

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