Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.09 KB

EzsignelementdependencyResponse.md

File metadata and controls

38 lines (29 loc) · 2.09 KB

EzsignelementdependencyResponse

An Ezsignelementdependency Object

Properties

Name Type Description Notes
pki_ezsignelementdependency_id int The unique ID of the Ezsignelementdependency
fki_ezsignformfield_id int The unique ID of the Ezsignformfield [optional]
fki_ezsignsignature_id int The unique ID of the Ezsignsignature [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]
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]

Example

from eZmaxApi.models.ezsignelementdependency_response import EzsignelementdependencyResponse

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

# convert the object into a dict
ezsignelementdependency_response_dict = ezsignelementdependency_response_instance.to_dict()
# create an instance of EzsignelementdependencyResponse from a dict
ezsignelementdependency_response_form_dict = ezsignelementdependency_response.from_dict(ezsignelementdependency_response_dict)

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