Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 888 Bytes

File metadata and controls

29 lines (20 loc) · 888 Bytes

RetweetLegacy

Properties

Name Type Description Notes
full_text str

Example

from twitter_openapi_python_generated.models.retweet_legacy import RetweetLegacy

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

# convert the object into a dict
retweet_legacy_dict = retweet_legacy_instance.to_dict()
# create an instance of RetweetLegacy from a dict
retweet_legacy_from_dict = RetweetLegacy.from_dict(retweet_legacy_dict)

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