Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 858 Bytes

File metadata and controls

28 lines (20 loc) · 858 Bytes

DeployStatus

Статусы деплоя.

Properties

Name Type Description Notes

Example

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)

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