Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 909 Bytes

File metadata and controls

29 lines (20 loc) · 909 Bytes

DeleteRetweet

Properties

Name Type Description Notes
result List[Retweet]

Example

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)

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