Skip to content

Files

Latest commit

1900452 · Jan 14, 2025

History

History
46 lines (37 loc) · 3.04 KB

CustomEzsignfoldertypeResponse.md

File metadata and controls

46 lines (37 loc) · 3.04 KB

CustomEzsignfoldertypeResponse

A Custom Ezsignfoldertype Object

Properties

Name Type Description Notes
pki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype.
fki_font_id_annotation int The unique ID of the Font [optional]
fki_font_id_formfield int The unique ID of the Font [optional]
fki_font_id_signature int The unique ID of the Font [optional]
s_ezsignfoldertype_name_x str The name of the Ezsignfoldertype in the language of the requester [optional]
b_ezsignfoldertype_sendproofezsignsigner bool Whether we send the proof in the email to Ezsignsigner [optional]
b_ezsignfoldertype_allowdownloadattachmentezsignsigner bool Whether we allow the Ezsigndocument to be downloaded by an Ezsignsigner [optional]
b_ezsignfoldertype_allowdownloadproofezsignsigner bool Whether we allow the proof to be downloaded by an Ezsignsigner [optional]
b_ezsignfoldertype_automaticsignature bool Whether we allow the automatic signature by an User [optional]
b_ezsignfoldertype_delegate bool Wheter if delegation of signature is allowed to another user or not [optional]
b_ezsignfoldertype_discussion bool Wheter if creating a new Discussion is allowed or not [optional]
b_ezsignfoldertype_reassignezsignsigner bool Wheter if Reassignment of signature is allowed by a signatory to another signatory or not [optional]
b_ezsignfoldertype_reassignuser bool Wheter if Reassignment of signature is allowed by a user to a signatory or another user or not [optional]
b_ezsignfoldertype_reassigngroup bool Wheter if Reassignment of signatures of the groups to which the user belongs is authorized by a user to himself [optional]
i_ezsignfoldertype_deadlinedays int The number of days to get all Ezsignsignatures [optional]
i_ezsignfoldertype_fontsizeannotation int Font size for annotations [optional]
i_ezsignfoldertype_fontsizeformfield int Font size for form fields [optional]

Example

from eZmaxApi.models.custom_ezsignfoldertype_response import CustomEzsignfoldertypeResponse

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

# convert the object into a dict
custom_ezsignfoldertype_response_dict = custom_ezsignfoldertype_response_instance.to_dict()
# create an instance of CustomEzsignfoldertypeResponse from a dict
custom_ezsignfoldertype_response_from_dict = CustomEzsignfoldertypeResponse.from_dict(custom_ezsignfoldertype_response_dict)

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