| Name | Type | Description | Notes |
|---|---|---|---|
| template | ImportTemplateUrlTemplate | ||
| file_url | str | PDF file from remote URL to import | |
| file_base64 | str | PDF file from base64 string to import |
frompdf_generator_api_client.models.import_template_requestimportImportTemplateRequest# TODO update the JSON string belowjson="{}"# create an instance of ImportTemplateRequest from a JSON stringimport_template_request_instance=ImportTemplateRequest.from_json(json)
# print the JSON string representation of the objectprint(ImportTemplateRequest.to_json())
# convert the object into a dictimport_template_request_dict=import_template_request_instance.to_dict()
# create an instance of ImportTemplateRequest from a dictimport_template_request_from_dict=ImportTemplateRequest.from_dict(import_template_request_dict)