An Ezsignelementdependency Object
Name | Type | Description | Notes |
---|---|---|---|
pki_ezsignelementdependency_id | int | The unique ID of the Ezsignelementdependency | [optional] |
fki_ezsignformfield_id_validation | int | The unique ID of the Ezsignformfield | [optional] |
fki_ezsignformfieldgroup_id_validation | int | The unique ID of the Ezsignformfieldgroup | [optional] |
s_ezsignelementdependency_ezsignformfieldgrouplabel | str | The Label for the Ezsignformfieldgroup | [optional] |
s_ezsignelementdependency_ezsignformfieldlabel | str | The Label for the Ezsignformfield | [optional] |
e_ezsignelementdependency_validation | FieldEEzsignelementdependencyValidation | ||
b_ezsignelementdependency_selected | bool | Whether if it's selected or not when using eEzsignelementdependencyValidation = Selected | [optional] |
e_ezsignelementdependency_operator | FieldEEzsignelementdependencyOperator | [optional] | |
s_ezsignelementdependency_value | str | The value of the Ezsignelementdependency | [optional] |
from eZmaxApi.models.ezsignelementdependency_request import EzsignelementdependencyRequest
# TODO update the JSON string below
json = "{}"
# create an instance of EzsignelementdependencyRequest from a JSON string
ezsignelementdependency_request_instance = EzsignelementdependencyRequest.from_json(json)
# print the JSON string representation of the object
print(EzsignelementdependencyRequest.to_json())
# convert the object into a dict
ezsignelementdependency_request_dict = ezsignelementdependency_request_instance.to_dict()
# create an instance of EzsignelementdependencyRequest from a dict
ezsignelementdependency_request_form_dict = ezsignelementdependency_request.from_dict(ezsignelementdependency_request_dict)