Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.27 KB

File metadata and controls

35 lines (26 loc) · 1.27 KB

Template

Template object. Use the Get schema endpoint to see the detailed payload structure.

Properties

NameTypeDescriptionNotes
idintUnique identifier[optional]
namestrTemplate name[optional]
ownerboolIndicates if the workspace is the owner of the template[optional]
created_atstrTimestamp when the template was created[optional]
updated_atstrTimestamp when the template was updated[optional]
tagsList[str]A list of tags assigned to a template[optional]

Example

frompdf_generator_api_client.models.templateimportTemplate# TODO update the JSON string belowjson="{}"# create an instance of Template from a JSON stringtemplate_instance=Template.from_json(json)
# print the JSON string representation of the objectprint(Template.to_json())
# convert the object into a dicttemplate_dict=template_instance.to_dict()
# create an instance of Template from a dicttemplate_from_dict=Template.from_dict(template_dict)

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