Skip to content

Latest commit

 

History

History
77 lines (68 loc) · 7.66 KB

EzsignfoldertypeResponseCompoundV3.md

File metadata and controls

77 lines (68 loc) · 7.66 KB

EzsignfoldertypeResponseCompoundV3

A Ezsignfoldertype Object

Properties

Name Type Description Notes
pki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype.
obj_ezsignfoldertype_name MultilingualEzsignfoldertypeName
fki_branding_id int The unique ID of the Branding
fki_billingentityinternal_id int The unique ID of the Billingentityinternal. [optional]
fki_ezsigntsarequirement_id int The unique ID of the Ezsigntsarequirement. Determine if a Time Stamping Authority should add a timestamp on each of the signature. Valid values: Value
s_branding_description_x str The Description of the Branding in the language of the requester
s_billingentityinternal_description_x str The description of the Billingentityinternal in the language of the requester [optional]
s_ezsigntsarequirement_description_x str The description of the Ezsigntsarequirement in the language of the requester [optional]
s_email_address_signed str The email address. [optional]
s_email_address_summary str The email address. [optional]
e_ezsignfoldertype_privacylevel FieldEEzsignfoldertypePrivacylevel
e_ezsignfoldertype_sendreminderfrequency FieldEEzsignfoldertypeSendreminderfrequency [optional]
i_ezsignfoldertype_archivaldays int The number of days before the archival of Ezsignfolders created using this Ezsignfoldertype
e_ezsignfoldertype_disposal FieldEEzsignfoldertypeDisposal
e_ezsignfoldertype_completion FieldEEzsignfoldertypeCompletion
i_ezsignfoldertype_disposaldays int The number of days after the archival before the disposal of the Ezsignfolder [optional]
i_ezsignfoldertype_deadlinedays int The number of days to get all Ezsignsignatures
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_sendsignedtoezsignsigner bool Whether we send an email to Ezsignsigner when document is completed [optional]
b_ezsignfoldertype_sendsignedtouser bool Whether we send an email to User who signed when document is completed [optional]
b_ezsignfoldertype_sendattachmentezsignsigner bool Whether we send the Ezsigndocument in the email to Ezsignsigner [optional]
b_ezsignfoldertype_sendproofezsignsigner bool Whether we send the proof in the email to Ezsignsigner [optional]
b_ezsignfoldertype_sendattachmentuser bool Whether we send the Ezsigndocument in the email to User [optional]
b_ezsignfoldertype_sendproofuser bool Whether we send the proof in the email to User [optional]
b_ezsignfoldertype_sendproofemail bool Whether we send the proof in the email to external recipient [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_sendproofreceivealldocument bool Whether we send the proof to user and Ezsignsigner who receive all documents. [optional]
b_ezsignfoldertype_sendsignedtodocumentowner bool Whether we send the signed Ezsigndocument to the Ezsigndocument's owner
b_ezsignfoldertype_sendsignedtofolderowner bool Whether we send the signed Ezsigndocument to the Ezsignfolder's owner
b_ezsignfoldertype_sendsignedtofullgroup bool Whether we send the signed Ezsigndocument to the Usergroup that has acces to all Ezsignfolders [optional]
b_ezsignfoldertype_sendsignedtolimitedgroup bool THIS FIELD WILL BE DELETED. Whether we send the signed Ezsigndocument to the Usergroup that has acces to only their own Ezsignfolders [optional]
b_ezsignfoldertype_sendsignedtocolleague bool Whether we send the signed Ezsigndocument to the colleagues
b_ezsignfoldertype_sendsummarytodocumentowner bool Whether we send the summary to the Ezsigndocument's owner
b_ezsignfoldertype_sendsummarytofolderowner bool Whether we send the summary to the Ezsignfolder's owner
b_ezsignfoldertype_sendsummarytofullgroup bool Whether we send the summary to the Usergroup that has acces to all Ezsignfolders [optional]
b_ezsignfoldertype_sendsummarytolimitedgroup bool Whether we send the summary to the Usergroup that has acces to only their own Ezsignfolders [optional]
b_ezsignfoldertype_sendsummarytocolleague bool Whether we send the summary to the colleagues
b_ezsignfoldertype_isactive bool Whether the Ezsignfoldertype is active or not
a_obj_userlogintype List[UserlogintypeResponse]
a_obj_usergroup_all List[UsergroupResponse] [optional]
a_obj_usergroup_restricted List[UsergroupResponse] [optional]
a_obj_usergroup_template List[UsergroupResponse] [optional]
a_fki_user_id_signed List[int] [optional]
a_fki_user_id_summary List[int] [optional]

Example

from eZmaxApi.models.ezsignfoldertype_response_compound_v3 import EzsignfoldertypeResponseCompoundV3

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

# convert the object into a dict
ezsignfoldertype_response_compound_v3_dict = ezsignfoldertype_response_compound_v3_instance.to_dict()
# create an instance of EzsignfoldertypeResponseCompoundV3 from a dict
ezsignfoldertype_response_compound_v3_form_dict = ezsignfoldertype_response_compound_v3.from_dict(ezsignfoldertype_response_compound_v3_dict)

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