Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.98 KB

File metadata and controls

37 lines (28 loc) · 1.98 KB

EzsigntemplatesignerRequestCompound

A Ezsigntemplatesigner Object and children

Properties

Name Type Description Notes
pki_ezsigntemplatesigner_id int The unique ID of the Ezsigntemplatesigner [optional]
fki_ezsigntemplate_id int The unique ID of the Ezsigntemplate
fki_user_id int The unique ID of the User [optional]
fki_usergroup_id int The unique ID of the Usergroup [optional]
fki_ezdoctemplatedocument_id int The unique ID of the Ezdoctemplatedocument [optional]
b_ezsigntemplatesigner_receivecopy bool If this flag is true. The signatory will receive a copy of every signed Ezsigndocument even if it ain't required to sign the document. [optional]
e_ezsigntemplatesigner_mapping FieldEEzsigntemplatesignerMapping [optional]
s_ezsigntemplatesigner_description str The description of the Ezsigntemplatesigner

Example

from eZmaxApi.models.ezsigntemplatesigner_request_compound import EzsigntemplatesignerRequestCompound

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

# convert the object into a dict
ezsigntemplatesigner_request_compound_dict = ezsigntemplatesigner_request_compound_instance.to_dict()
# create an instance of EzsigntemplatesignerRequestCompound from a dict
ezsigntemplatesigner_request_compound_from_dict = EzsigntemplatesignerRequestCompound.from_dict(ezsigntemplatesigner_request_compound_dict)

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