Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 903 Bytes

File metadata and controls

29 lines (20 loc) · 903 Bytes

CreateRetweet

Properties

Name Type Description Notes
result Retweet

Example

from twitter_openapi_python_generated.models.create_retweet import CreateRetweet

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

# convert the object into a dict
create_retweet_dict = create_retweet_instance.to_dict()
# create an instance of CreateRetweet from a dict
create_retweet_from_dict = CreateRetweet.from_dict(create_retweet_dict)

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