CreateRetweetResponseResult
from twitter_openapi_python_generated.models.create_retweet_response_result import CreateRetweetResponseResult
# TODO update the JSON string below
json = "{}"
# create an instance of CreateRetweetResponseResult from a JSON string
create_retweet_response_result_instance = CreateRetweetResponseResult.from_json(json)
# print the JSON string representation of the object
print(CreateRetweetResponseResult.to_json())
# convert the object into a dict
create_retweet_response_result_dict = create_retweet_response_result_instance.to_dict()
# create an instance of CreateRetweetResponseResult from a dict
create_retweet_response_result_from_dict = CreateRetweetResponseResult.from_dict(create_retweet_response_result_dict)
[Back to Model list] [Back to API list] [Back to README]