Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.37 KB

File metadata and controls

35 lines (26 loc) · 1.37 KB

DeploymentFieldsforstartdeployments

Properties

Name Type Description Notes
created_at datetime [optional]
description str [optional]
id int [optional]
name str [optional]
status str [optional]
template str [optional]
variables str [optional]

Example

from hyperstack.models.deployment_fieldsforstartdeployments import DeploymentFieldsforstartdeployments

# TODO update the JSON string below
json = "{}"
# create an instance of DeploymentFieldsforstartdeployments from a JSON string
deployment_fieldsforstartdeployments_instance = DeploymentFieldsforstartdeployments.from_json(json)
# print the JSON string representation of the object
print(DeploymentFieldsforstartdeployments.to_json())

# convert the object into a dict
deployment_fieldsforstartdeployments_dict = deployment_fieldsforstartdeployments_instance.to_dict()
# create an instance of DeploymentFieldsforstartdeployments from a dict
deployment_fieldsforstartdeployments_from_dict = DeploymentFieldsforstartdeployments.from_dict(deployment_fieldsforstartdeployments_dict)

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