| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | ||
| type | DeploymentType | ||
| status | DeploymentStatus | ||
| service_status | ServiceStatus | [optional] | |
| error_message | str | [optional] | |
| endpoint_url | str | [optional] | |
| pod_status | List[List[object]] | [optional] |
from platform_api_python_client.models.deployment_status_response import DeploymentStatusResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DeploymentStatusResponse from a JSON string
deployment_status_response_instance = DeploymentStatusResponse.from_json(json)
# print the JSON string representation of the object
print(DeploymentStatusResponse.to_json())
# convert the object into a dict
deployment_status_response_dict = deployment_status_response_instance.to_dict()
# create an instance of DeploymentStatusResponse from a dict
deployment_status_response_from_dict = DeploymentStatusResponse.from_dict(deployment_status_response_dict)