Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

ImportFormRequest

Properties

NameTypeDescriptionNotes
file_urlstrPDF file from remote URL to import
formFormConfigurationNew[optional]
file_base64strPDF file from base64 string to import

Example

frompdf_generator_api_client.models.import_form_requestimportImportFormRequest# TODO update the JSON string belowjson="{}"# create an instance of ImportFormRequest from a JSON stringimport_form_request_instance=ImportFormRequest.from_json(json)
# print the JSON string representation of the objectprint(ImportFormRequest.to_json())
# convert the object into a dictimport_form_request_dict=import_form_request_instance.to_dict()
# create an instance of ImportFormRequest from a dictimport_form_request_from_dict=ImportFormRequest.from_dict(import_form_request_dict)

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