Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 908 Bytes

File metadata and controls

28 lines (19 loc) · 908 Bytes

TemplateParamData

Properties

Name Type Description Notes

Example

from pdf_generator_api_client.models.template_param_data import TemplateParamData

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

# convert the object into a dict
template_param_data_dict = template_param_data_instance.to_dict()
# create an instance of TemplateParamData from a dict
template_param_data_from_dict = TemplateParamData.from_dict(template_param_data_dict)

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