Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

DeleteTweetResponseResult.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

DeleteTweetResponseResult

Properties

Name Type Description Notes
tweet_results object

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]