Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 856 Bytes

File metadata and controls

32 lines (23 loc) · 856 Bytes

Url

Properties

Name Type Description Notes
display_url str
expanded_url str [optional]
indices List[int]
url str

Example

from twitter_openapi_python_generated.models.url import Url

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

# convert the object into a dict
url_dict = url_instance.to_dict()
# create an instance of Url from a dict
url_from_dict = Url.from_dict(url_dict)

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