An Ezsignfolder List Element
| 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 | ||
| e_ezsignfolder_completion | FieldEEzsignfolderCompletion | ||
| 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 | Percentage of Ezsignform/Ezsignsignatures has completed | |
| d_ezsignfolder_formcompletedpercentage | str | Percentage of Ezsignform has completed | |
| d_ezsignfolder_signaturecompletedpercentage | str | Percentage of Ezsignsignatures has signed | |
| dt_ezsignfolder_close | str | The date and time at which the Ezsignfolder was closed. Either by applying the last signature or by completing it prematurely. | [optional] |
| dt_ezsignfolder_archive | str | The date and time at which the Ezsignfolder was archived. | [optional] |
| dt_ezsignfolder_dispose | str | The date and time at which the Ezsignfolder was disposed. | [optional] |
| b_ezsignfolder_signer | bool | Whether the Ezsignfolder has an Ezsignsignatures that need to be signed or an Ezsignformfieldgroups that need to be filled by the current user | [optional] |
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_from_dict = EzsignfolderListElement.from_dict(ezsignfolder_list_element_dict)