A Ezsigntemplatepackagesigner Object and children
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_ezsigntemplatepackagesigner_id | int | The unique ID of the Ezsigntemplatepackagesigner | [optional] |
| fki_ezsigntemplatepackage_id | int | The unique ID of the Ezsigntemplatepackage | |
| fki_ezdoctemplatedocument_id | int | The unique ID of the Ezdoctemplatedocument | [optional] |
| fki_user_id | int | The unique ID of the User | [optional] |
| fki_usergroup_id | int | The unique ID of the Usergroup | [optional] |
| b_ezsigntemplatepackagesigner_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_ezsigntemplatepackagesigner_mapping | FieldEEzsigntemplatepackagesignerMapping | [optional] [default to FieldEEzsigntemplatepackagesignerMapping.MANUAL] | |
| s_ezsigntemplatepackagesigner_description | str | The description of the Ezsigntemplatepackagesigner |
from eZmaxApi.models.ezsigntemplatepackagesigner_request_compound import EzsigntemplatepackagesignerRequestCompound
# TODO update the JSON string below
json = "{}"
# create an instance of EzsigntemplatepackagesignerRequestCompound from a JSON string
ezsigntemplatepackagesigner_request_compound_instance = EzsigntemplatepackagesignerRequestCompound.from_json(json)
# print the JSON string representation of the object
print(EzsigntemplatepackagesignerRequestCompound.to_json())
# convert the object into a dict
ezsigntemplatepackagesigner_request_compound_dict = ezsigntemplatepackagesigner_request_compound_instance.to_dict()
# create an instance of EzsigntemplatepackagesignerRequestCompound from a dict
ezsigntemplatepackagesigner_request_compound_from_dict = EzsigntemplatepackagesignerRequestCompound.from_dict(ezsigntemplatepackagesigner_request_compound_dict)