Skip to content

Latest commit

 

History

History
72 lines (63 loc) · 7.04 KB

EzsignfoldertypeRequestCompound.md

File metadata and controls

72 lines (63 loc) · 7.04 KB

EzsignfoldertypeRequestCompound

A Ezsignfoldertype Object and children

Properties

Name Type Description Notes
pki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype. [optional]
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_usergroup_id int The unique ID of the Usergroup [optional]
fki_usergroup_id_restricted int The unique ID of the Usergroup [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_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_fki_user_id_signed List[int] [optional]
a_fki_user_id_summary List[int] [optional]

Example

from eZmaxApi.models.ezsignfoldertype_request_compound import EzsignfoldertypeRequestCompound

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

# convert the object into a dict
ezsignfoldertype_request_compound_dict = ezsignfoldertype_request_compound_instance.to_dict()
# create an instance of EzsignfoldertypeRequestCompound from a dict
ezsignfoldertype_request_compound_form_dict = ezsignfoldertype_request_compound.from_dict(ezsignfoldertype_request_compound_dict)

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