| Name | Type | Description | Notes |
|---|---|---|---|
| image_name | str | ||
| label | str | ||
| tags | List[str] | ||
| type | DeploymentType | ||
| port | int | ||
| healthcheck | str | [optional] |
from platform_api_python_client.models.prebuilt_image_response import PrebuiltImageResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PrebuiltImageResponse from a JSON string
prebuilt_image_response_instance = PrebuiltImageResponse.from_json(json)
# print the JSON string representation of the object
print(PrebuiltImageResponse.to_json())
# convert the object into a dict
prebuilt_image_response_dict = prebuilt_image_response_instance.to_dict()
# create an instance of PrebuiltImageResponse from a dict
prebuilt_image_response_from_dict = PrebuiltImageResponse.from_dict(prebuilt_image_response_dict)