Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

DeploymentStatusRequest

Properties

Name Type Description Notes
status DeploymentStatus

Example

from platform_api_python_client.models.deployment_status_request import DeploymentStatusRequest

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

# convert the object into a dict
deployment_status_request_dict = deployment_status_request_instance.to_dict()
# create an instance of DeploymentStatusRequest from a dict
deployment_status_request_from_dict = DeploymentStatusRequest.from_dict(deployment_status_request_dict)

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