| Name |
Type |
Description |
Notes |
| description |
str |
|
|
| name |
str |
|
|
| template_id |
int |
|
|
| variables |
Dict[str, str] |
|
[optional] |
from hyperstack.models.start_deployment_payload import StartDeploymentPayload
# TODO update the JSON string below
json = "{}"
# create an instance of StartDeploymentPayload from a JSON string
start_deployment_payload_instance = StartDeploymentPayload.from_json(json)
# print the JSON string representation of the object
print(StartDeploymentPayload.to_json())
# convert the object into a dict
start_deployment_payload_dict = start_deployment_payload_instance.to_dict()
# create an instance of StartDeploymentPayload from a dict
start_deployment_payload_from_dict = StartDeploymentPayload.from_dict(start_deployment_payload_dict)
[Back to Model list] [Back to API list] [Back to README]