Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 994 Bytes

File metadata and controls

30 lines (21 loc) · 994 Bytes

TemplateRecords

Properties

Name Type Description Notes
page_details PageDetails [optional]
result List[Template] [optional]

Example

from boldsign.models.template_records import TemplateRecords

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

# convert the object into a dict
template_records_dict = template_records_instance.to_dict()
# create an instance of TemplateRecords from a dict
template_records_from_dict = TemplateRecords.from_dict(template_records_dict)

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