| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| status | bool | [optional] | |
| templates | List[TemplateFields] | [optional] |
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)