Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 935 Bytes

File metadata and controls

31 lines (22 loc) · 935 Bytes

Templates

Properties

Name Type Description Notes
message str [optional]
status bool [optional]
templates List[TemplateFields] [optional]

Example

from hyperstack.models.templates import Templates

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

# convert the object into a dict
templates_dict = templates_instance.to_dict()
# create an instance of Templates from a dict
templates_from_dict = Templates.from_dict(templates_dict)

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