Статусы деплоя.
| Name | Type | Description | Notes |
|---|
from timeweb_cloud_api.models.deploy_status import DeployStatus
# TODO update the JSON string below
json = "{}"
# create an instance of DeployStatus from a JSON string
deploy_status_instance = DeployStatus.from_json(json)
# print the JSON string representation of the object
print DeployStatus.to_json()
# convert the object into a dict
deploy_status_dict = deploy_status_instance.to_dict()
# create an instance of DeployStatus from a dict
deploy_status_form_dict = deploy_status.from_dict(deploy_status_dict)