Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

CustomTemplates

Properties

Name Type Description Notes
category List[TemplateDescriptor] [optional]
page List[TemplateDescriptor] [optional]
post List[TemplateDescriptor] [optional]

Example

from halo_client.models.custom_templates import CustomTemplates

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

# convert the object into a dict
custom_templates_dict = custom_templates_instance.to_dict()
# create an instance of CustomTemplates from a dict
custom_templates_from_dict = CustomTemplates.from_dict(custom_templates_dict)

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