Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 4.47 KB

EzsignfolderResponse.md

File metadata and controls

52 lines (43 loc) · 4.47 KB

EzsignfolderResponse

An Ezsignfolder Object

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. [optional]
obj_ezsignfoldertype CustomEzsignfoldertypeResponse [optional]
e_ezsignfolder_completion FieldEEzsignfolderCompletion
s_ezsignfoldertype_name_x str [optional]
fki_billingentityinternal_id int The unique ID of the Billingentityinternal. [optional]
s_billingentityinternal_description_x str The description of the Billingentityinternal in the language of the requester [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_ezsigntsarequirement_description_x str The description of the Ezsigntsarequirement in the language of the requester [optional]
s_ezsignfolder_description str The description of the Ezsignfolder
t_ezsignfolder_note str Note about the Ezsignfolder [optional]
b_ezsignfolder_isdisposable bool If the Ezsigndocument can be disposed [optional]
e_ezsignfolder_sendreminderfrequency FieldEEzsignfolderSendreminderfrequency [optional]
dt_ezsignfolder_delayedsenddate str The date and time at which the Ezsignfolder will be sent in the future. [optional]
dt_ezsignfolder_duedate str The maximum date and time at which the Ezsignfolder can be signed. [optional]
dt_ezsignfolder_sentdate str The date and time at which the Ezsignfolder was sent the last time. [optional]
dt_ezsignfolder_scheduledarchive str The scheduled date and time at which the Ezsignfolder should be archived. [optional]
dt_ezsignfolder_scheduleddispose str The scheduled date at which the Ezsignfolder should be Disposed. [optional]
e_ezsignfolder_step FieldEEzsignfolderStep [optional]
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]
t_ezsignfolder_message str A custom text message that will be added to the email sent. [optional]
obj_audit CommonAudit [optional]
s_ezsignfolder_externalid str This field can be used to store an External ID from the client's system. Anything can be stored in this field, it will never be evaluated by the eZmax system and will be returned AS-IS. To store multiple values, consider using a JSON formatted structure, a URL encoded string, a CSV or any other custom format. [optional]

Example

from eZmaxApi.models.ezsignfolder_response import EzsignfolderResponse

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

# convert the object into a dict
ezsignfolder_response_dict = ezsignfolder_response_instance.to_dict()
# create an instance of EzsignfolderResponse from a dict
ezsignfolder_response_form_dict = ezsignfolder_response.from_dict(ezsignfolder_response_dict)

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