Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

ImportTemplateBase64

Properties

Name Type Description Notes
template ImportTemplateUrlTemplate
file_base64 str PDF file from base64 string to import

Example

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)

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