An enumeration.
| Name | Type | Description | Notes |
|---|
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)