Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.54 KB

CustomFormDataDocumentResponse.md

File metadata and controls

34 lines (25 loc) · 1.54 KB

CustomFormDataDocumentResponse

A form Data Document Object

Properties

Name Type Description Notes
pki_ezsigndocument_id int The unique ID of the Ezsigndocument
fki_ezsignfolder_id int The unique ID of the Ezsignfolder
s_ezsigndocument_name str The name of the document that will be presented to Ezsignfoldersignerassociations
dt_modified_date str The date and time at which the object was last modified
a_obj_form_data_signer List[CustomFormDataSignerResponse]

Example

from eZmaxApi.models.custom_form_data_document_response import CustomFormDataDocumentResponse

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

# convert the object into a dict
custom_form_data_document_response_dict = custom_form_data_document_response_instance.to_dict()
# create an instance of CustomFormDataDocumentResponse from a dict
custom_form_data_document_response_form_dict = custom_form_data_document_response.from_dict(custom_form_data_document_response_dict)

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