Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 970 Bytes

File metadata and controls

31 lines (22 loc) · 970 Bytes

UpdateTemplate

Properties

Name Type Description Notes
description str [optional]
is_public bool [optional]
name str [optional]

Example

from hyperstack.models.update_template import UpdateTemplate

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

# convert the object into a dict
update_template_dict = update_template_instance.to_dict()
# create an instance of UpdateTemplate from a dict
update_template_from_dict = UpdateTemplate.from_dict(update_template_dict)

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