DeleteTweetResponseResult

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
tweet_resultsobject

Example

from twitter_openapi_python_generated.models.delete_tweet_response_result import DeleteTweetResponseResult

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

# convert the object into a dict
delete_tweet_response_result_dict = delete_tweet_response_result_instance.to_dict()
# create an instance of DeleteTweetResponseResult from a dict
delete_tweet_response_result_from_dict = DeleteTweetResponseResult.from_dict(delete_tweet_response_result_dict)

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