Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.09 KB

File metadata and controls

34 lines (25 loc) · 1.09 KB

DeploymentFields

Properties

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

Example

from hyperstack.models.deployment_fields import DeploymentFields

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

# convert the object into a dict
deployment_fields_dict = deployment_fields_instance.to_dict()
# create an instance of DeploymentFields from a dict
deployment_fields_from_dict = DeploymentFields.from_dict(deployment_fields_dict)

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