UserTweetsResultV2

May 7, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName
timeline_v2TimelineResult

Example

from twitter_openapi_python_generated.models.user_tweets_result_v2 import UserTweetsResultV2

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

# convert the object into a dict
user_tweets_result_v2_dict = user_tweets_result_v2_instance.to_dict()
# create an instance of UserTweetsResultV2 from a dict
user_tweets_result_v2_from_dict = UserTweetsResultV2.from_dict(user_tweets_result_v2_dict)

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