Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.91 KB

EzsignfolderListElement.md

File metadata and controls

47 lines (38 loc) · 2.91 KB

EzsignfolderListElement

An Ezsignfolder List Element

Properties

Name Type Description Notes
pki_ezsignfolder_id int The unique ID of the Ezsignfolder
fki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype.
e_ezsignfoldertype_privacylevel FieldEEzsignfoldertypePrivacylevel
s_ezsignfoldertype_name_x str The name of the Ezsignfoldertype in the language of the requester
s_ezsignfolder_description str The description of the Ezsignfolder
e_ezsignfolder_step FieldEEzsignfolderStep
dt_created_date str The date and time at which the object was created
dt_ezsignfolder_delayedsenddate str The date and time at which the Ezsignfolder will be sent in the future. [optional]
dt_ezsignfolder_sentdate str The date and time at which the Ezsignfolder was sent the last time. [optional]
dt_ezsignfolder_duedate str The maximum date and time at which the Ezsignfolder can be signed. [optional]
i_ezsigndocument int The total number of Ezsigndocument in the folder
i_ezsigndocument_edm int The total number of Ezsigndocument in the folder that were saved in the edm system
i_ezsignsignature int The total number of signature blocks in all Ezsigndocuments in the folder
i_ezsignsignature_signed int The total number of already signed signature blocks in all Ezsigndocuments in the folder
i_ezsignformfieldgroup int The total number of Ezsignformfieldgroup in all Ezsigndocuments in the folder
i_ezsignformfieldgroup_completed int The total number of completed Ezsignformfieldgroup in all Ezsigndocuments in the folder
b_ezsignform_hasdependencies bool Whether the Ezsignform/Ezsignsignatures has dependencies or not [optional]
d_ezsignfolder_completedpercentage str Whether the Ezsignform/Ezsignsignatures has dependencies or not

Example

from eZmaxApi.models.ezsignfolder_list_element import EzsignfolderListElement

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

# convert the object into a dict
ezsignfolder_list_element_dict = ezsignfolder_list_element_instance.to_dict()
# create an instance of EzsignfolderListElement from a dict
ezsignfolder_list_element_form_dict = ezsignfolder_list_element.from_dict(ezsignfolder_list_element_dict)

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