Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

TemplateParam

Template id, version and data

Properties

Name Type Description Notes
id int Template ID [optional]
data TemplateParamData [optional]

Example

from pdf_generator_api_client.models.template_param import TemplateParam

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

# convert the object into a dict
template_param_dict = template_param_instance.to_dict()
# create an instance of TemplateParam from a dict
template_param_from_dict = TemplateParam.from_dict(template_param_dict)

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