TemplateFile

Properties

NameTypeDescriptionNotes
contentstrFile content (base64 encoded for binary files)
mime_typestrMIME type of the file

Example

from pdf_generator_client.models.template_file import TemplateFile

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

# convert the object into a dict
template_file_dict = template_file_instance.to_dict()
# create an instance of TemplateFile from a dict
template_file_from_dict = TemplateFile.from_dict(template_file_dict)

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