Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.52 KB

File metadata and controls

33 lines (24 loc) · 1.52 KB

EzsignfolderSendV3Request

Request for POST /3/object/ezsignfolder/{pkiEzsignfolderID}/send

Properties

Name Type Description Notes
t_ezsignfolder_message str A custom text message that will be added to the email sent. [optional]
e_ezsignfolder_messageorder FieldEEzsignfolderMessageorder [optional] [default to FieldEEzsignfolderMessageorder.GLOBALFIRST]
dt_ezsignfolder_delayedsenddate str The date and time at which the Ezsignfolder will be sent in the future. [optional]
a_fki_ezsignfoldersignerassociation_id List[int]

Example

from eZmaxApi.models.ezsignfolder_send_v3_request import EzsignfolderSendV3Request

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

# convert the object into a dict
ezsignfolder_send_v3_request_dict = ezsignfolder_send_v3_request_instance.to_dict()
# create an instance of EzsignfolderSendV3Request from a dict
ezsignfolder_send_v3_request_from_dict = EzsignfolderSendV3Request.from_dict(ezsignfolder_send_v3_request_dict)

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