| Name | Type | Description | Notes |
|---|---|---|---|
| creator_email | str | ||
| cluster_id | int | ||
| id | int | ||
| name | str | ||
| endpoint_url | str | ||
| image_url | str | [optional] | |
| type | DeploymentType | ||
| status | DeploymentStatus | ||
| created_at | datetime | ||
| hardware_instance_id | int | ||
| revision_number | int |
from platform_api_python_client.models.get_deployment_response import GetDeploymentResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetDeploymentResponse from a JSON string
get_deployment_response_instance = GetDeploymentResponse.from_json(json)
# print the JSON string representation of the object
print(GetDeploymentResponse.to_json())
# convert the object into a dict
get_deployment_response_dict = get_deployment_response_instance.to_dict()
# create an instance of GetDeploymentResponse from a dict
get_deployment_response_from_dict = GetDeploymentResponse.from_dict(get_deployment_response_dict)