Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.73 KB

File metadata and controls

32 lines (23 loc) · 1.73 KB

EzsignfolderImportEzsigntemplatepackageV2Request

Request for POST /2/object/ezsignfolder/{pkiEzsignfolderID}/importEzsigntemplatepackage

Properties

Name Type Description Notes
fki_ezsigntemplatepackage_id int The unique ID of the Ezsigntemplatepackage
dt_ezsigndocument_duedate str The maximum date and time at which the Ezsigndocument can be signed.
a_obj_import_ezsigntemplatepackage_relation List[CustomImportEzsigntemplatepackageRelationRequest]

Example

from eZmaxApi.models.ezsignfolder_import_ezsigntemplatepackage_v2_request import EzsignfolderImportEzsigntemplatepackageV2Request

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

# convert the object into a dict
ezsignfolder_import_ezsigntemplatepackage_v2_request_dict = ezsignfolder_import_ezsigntemplatepackage_v2_request_instance.to_dict()
# create an instance of EzsignfolderImportEzsigntemplatepackageV2Request from a dict
ezsignfolder_import_ezsigntemplatepackage_v2_request_from_dict = EzsignfolderImportEzsigntemplatepackageV2Request.from_dict(ezsignfolder_import_ezsigntemplatepackage_v2_request_dict)

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