Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

StartDeploymentPayload

Properties

Name Type Description Notes
description str
name str
template_id int
variables Dict[str, str] [optional]

Example

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]