Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.24 KB

CustomEzsignfoldertypeResponse.md

File metadata and controls

38 lines (29 loc) · 2.24 KB

CustomEzsignfoldertypeResponse

A Custom Ezsignfoldertype Object

Properties

Name Type Description Notes
pki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype.
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_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]

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_form_dict = custom_ezsignfoldertype_response.from_dict(custom_ezsignfoldertype_response_dict)

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