| Name | Type | Description | Notes |
|---|---|---|---|
| deployments | List[DeploymentFields] | [optional] | |
| message | str | [optional] | |
| status | bool | [optional] |
from hyperstack.models.deployments import Deployments
# TODO update the JSON string below
json = "{}"
# create an instance of Deployments from a JSON string
deployments_instance = Deployments.from_json(json)
# print the JSON string representation of the object
print(Deployments.to_json())
# convert the object into a dict
deployments_dict = deployments_instance.to_dict()
# create an instance of Deployments from a dict
deployments_from_dict = Deployments.from_dict(deployments_dict)