Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

QuotedStatusPermalink

Properties

Name Type Description Notes
display str
expanded str
url str

Example

from twitter_openapi_python_generated.models.quoted_status_permalink import QuotedStatusPermalink

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

# convert the object into a dict
quoted_status_permalink_dict = quoted_status_permalink_instance.to_dict()
# create an instance of QuotedStatusPermalink from a dict
quoted_status_permalink_from_dict = QuotedStatusPermalink.from_dict(quoted_status_permalink_dict)

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