Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

FormFieldsBase64

Properties

NameTypeDescriptionNotes
file_base64strPDF document in base64 encoded string format
key_fieldKeyFieldParam[optional] [default to KeyFieldParam.NAME]

Example

frompdf_generator_api_client.models.form_fields_base64importFormFieldsBase64# TODO update the JSON string belowjson="{}"# create an instance of FormFieldsBase64 from a JSON stringform_fields_base64_instance=FormFieldsBase64.from_json(json)
# print the JSON string representation of the objectprint(FormFieldsBase64.to_json())
# convert the object into a dictform_fields_base64_dict=form_fields_base64_instance.to_dict()
# create an instance of FormFieldsBase64 from a dictform_fields_base64_from_dict=FormFieldsBase64.from_dict(form_fields_base64_dict)

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