Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.5 KB

EzsigntemplateelementdependencyResponseCompound.md

File metadata and controls

38 lines (29 loc) · 2.5 KB

EzsigntemplateelementdependencyResponseCompound

An Ezsigntemplateelementdependency Object and children to create a complete structure

Properties

Name Type Description Notes
pki_ezsigntemplateelementdependency_id int The unique ID of the Ezsigntemplateelementdependency
fki_ezsigntemplateformfield_id int The unique ID of the Ezsigntemplateformfield [optional]
fki_ezsigntemplatesignature_id int The unique ID of the Ezsigntemplatesignature [optional]
fki_ezsigntemplateformfield_id_validation int The unique ID of the Ezsigntemplateformfield [optional]
fki_ezsigntemplateformfieldgroup_id_validation int The unique ID of the Ezsigntemplateformfieldgroup [optional]
e_ezsigntemplateelementdependency_validation FieldEEzsigntemplateelementdependencyValidation
b_ezsigntemplateelementdependency_selected bool Whether if it's selected or not when using eEzsigntemplateelementdependencyValidation = Selected [optional]
e_ezsigntemplateelementdependency_operator FieldEEzsigntemplateelementdependencyOperator [optional]
s_ezsigntemplateelementdependency_value str The value of the Ezsignelementdependency [optional]

Example

from eZmaxApi.models.ezsigntemplateelementdependency_response_compound import EzsigntemplateelementdependencyResponseCompound

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

# convert the object into a dict
ezsigntemplateelementdependency_response_compound_dict = ezsigntemplateelementdependency_response_compound_instance.to_dict()
# create an instance of EzsigntemplateelementdependencyResponseCompound from a dict
ezsigntemplateelementdependency_response_compound_form_dict = ezsigntemplateelementdependency_response_compound.from_dict(ezsigntemplateelementdependency_response_compound_dict)

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