An Ezsignfolder Object
Name | Type | Description | Notes |
---|---|---|---|
pki_ezsignfolder_id | int | The unique ID of the Ezsignfolder | [optional] |
fki_ezsignfoldertype_id | int | The unique ID of the Ezsignfoldertype. | |
fki_timezone_id | int | The unique ID of the Timezone | [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 |
e_ezsignfolder_documentdependency | FieldEEzsignfolderDocumentdependency | [optional] | |
s_ezsignfolder_description | str | The description of the Ezsignfolder | |
t_ezsignfolder_note | str | Note about the Ezsignfolder | [optional] |
t_ezsignfolder_message | str | A custom text message that will be added to the email sent. | [optional] |
i_ezsignfolder_sendreminderfirstdays | int | The number of days before the the first reminder sending | |
i_ezsignfolder_sendreminderotherdays | int | The number of days after the first reminder sending | |
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] |
from eZmaxApi.models.ezsignfolder_request_v3 import EzsignfolderRequestV3
# TODO update the JSON string below
json = "{}"
# create an instance of EzsignfolderRequestV3 from a JSON string
ezsignfolder_request_v3_instance = EzsignfolderRequestV3.from_json(json)
# print the JSON string representation of the object
print(EzsignfolderRequestV3.to_json())
# convert the object into a dict
ezsignfolder_request_v3_dict = ezsignfolder_request_v3_instance.to_dict()
# create an instance of EzsignfolderRequestV3 from a dict
ezsignfolder_request_v3_from_dict = EzsignfolderRequestV3.from_dict(ezsignfolder_request_v3_dict)