Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

ImportTemplateUrl

Properties

Name Type Description Notes
template ImportTemplateUrlTemplate
file_url str PDF file from remote URL to import

Example

from pdf_generator_api_client.models.import_template_url import ImportTemplateUrl

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

# convert the object into a dict
import_template_url_dict = import_template_url_instance.to_dict()
# create an instance of ImportTemplateUrl from a dict
import_template_url_from_dict = ImportTemplateUrl.from_dict(import_template_url_dict)

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