Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.16 KB

File metadata and controls

35 lines (26 loc) · 1.16 KB

PrefillParam

Viewer prefill data, encrypted into the viewer URL. Only applied when output is viewer.

Properties

NameTypeDescriptionNotes
id_codestr[optional]
first_namestr[optional]
last_namestr[optional]
emailstr[optional]
signature_idstr[optional]
editablebool[optional] [default to True]

Example

frompdf_generator_api_client.models.prefill_paramimportPrefillParam# TODO update the JSON string belowjson="{}"# create an instance of PrefillParam from a JSON stringprefill_param_instance=PrefillParam.from_json(json)
# print the JSON string representation of the objectprint(PrefillParam.to_json())
# convert the object into a dictprefill_param_dict=prefill_param_instance.to_dict()
# create an instance of PrefillParam from a dictprefill_param_from_dict=PrefillParam.from_dict(prefill_param_dict)

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