Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 967 Bytes

File metadata and controls

31 lines (22 loc) · 967 Bytes

Deployments

Properties

Name Type Description Notes
deployments List[DeploymentFields] [optional]
message str [optional]
status bool [optional]

Example

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)

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