Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

TweetResultByRestIdData.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

TweetResultByRestIdData

Properties

Name Type Description Notes
tweet_result ItemResult

Example

from twitter_openapi_python_generated.models.tweet_result_by_rest_id_data import TweetResultByRestIdData

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

# convert the object into a dict
tweet_result_by_rest_id_data_dict = tweet_result_by_rest_id_data_instance.to_dict()
# create an instance of TweetResultByRestIdData from a dict
tweet_result_by_rest_id_data_from_dict = TweetResultByRestIdData.from_dict(tweet_result_by_rest_id_data_dict)

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