Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 806 Bytes

File metadata and controls

28 lines (20 loc) · 806 Bytes

UrlStatus

An enumeration.

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.url_status import UrlStatus

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

# convert the object into a dict
url_status_dict = url_status_instance.to_dict()
# create an instance of UrlStatus from a dict
url_status_form_dict = url_status.from_dict(url_status_dict)

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