| Name |
Type |
Description |
Notes |
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]