| Name |
Type |
Description |
Notes |
| created_at |
datetime |
|
[optional] |
| description |
str |
|
[optional] |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| status |
str |
|
[optional] |
| template |
str |
|
[optional] |
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]