Name | Type | Description | Notes |
---|---|---|---|
result | List[Retweet] |
from twitter_openapi_python_generated.models.delete_retweet import DeleteRetweet
# TODO update the JSON string below
json = "{}"
# create an instance of DeleteRetweet from a JSON string
delete_retweet_instance = DeleteRetweet.from_json(json)
# print the JSON string representation of the object
print(DeleteRetweet.to_json())
# convert the object into a dict
delete_retweet_dict = delete_retweet_instance.to_dict()
# create an instance of DeleteRetweet from a dict
delete_retweet_from_dict = DeleteRetweet.from_dict(delete_retweet_dict)