Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 989 Bytes

File metadata and controls

29 lines (20 loc) · 989 Bytes

ListTweetsTimeline

Properties

Name Type Description Notes
timeline Timeline [optional]

Example

from twitter_openapi_python_generated.models.list_tweets_timeline import ListTweetsTimeline

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

# convert the object into a dict
list_tweets_timeline_dict = list_tweets_timeline_instance.to_dict()
# create an instance of ListTweetsTimeline from a dict
list_tweets_timeline_from_dict = ListTweetsTimeline.from_dict(list_tweets_timeline_dict)

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