Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

ImportTemplateUrlTemplate

Properties

Name Type Description Notes
name str Template name

Example

from pdf_generator_api_client.models.import_template_url_template import ImportTemplateUrlTemplate

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

# convert the object into a dict
import_template_url_template_dict = import_template_url_template_instance.to_dict()
# create an instance of ImportTemplateUrlTemplate from a dict
import_template_url_template_from_dict = ImportTemplateUrlTemplate.from_dict(import_template_url_template_dict)

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