| Name | Type | Description | Notes |
|---|---|---|---|
| template | ImportTemplateUrlTemplate | ||
| file_base64 | str | PDF file from base64 string to import |
from pdf_generator_api_client.models.import_template_base64 import ImportTemplateBase64
# TODO update the JSON string below
json = "{}"
# create an instance of ImportTemplateBase64 from a JSON string
import_template_base64_instance = ImportTemplateBase64.from_json(json)
# print the JSON string representation of the object
print(ImportTemplateBase64.to_json())
# convert the object into a dict
import_template_base64_dict = import_template_base64_instance.to_dict()
# create an instance of ImportTemplateBase64 from a dict
import_template_base64_from_dict = ImportTemplateBase64.from_dict(import_template_base64_dict)