Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

TweetDetailResponseData.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

TweetDetailResponseData

Properties

Name Type Description Notes
threaded_conversation_with_injections_v2 Timeline

Example

from twitter_openapi_python_generated.models.tweet_detail_response_data import TweetDetailResponseData

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

# convert the object into a dict
tweet_detail_response_data_dict = tweet_detail_response_data_instance.to_dict()
# create an instance of TweetDetailResponseData from a dict
tweet_detail_response_data_from_dict = TweetDetailResponseData.from_dict(tweet_detail_response_data_dict)

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