Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.41 KB

EzsigntemplateelementdependencyRequest.md

File metadata and controls

38 lines (29 loc) · 2.41 KB

EzsigntemplateelementdependencyRequest

An Ezsigntemplateelementdependency Object

Properties

Name Type Description Notes
pki_ezsigntemplateelementdependency_id int The unique ID of the Ezsigntemplateelementdependency [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]
s_ezsigntemplateelementdependency_ezsigntemplateformfieldgrouplabel str The Label for the Ezsigntemplateformfieldgroup [optional]
s_ezsigntemplateelementdependency_ezsigntemplateformfieldlabel str The Label for the Ezsigntemplateformfield [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_request import EzsigntemplateelementdependencyRequest

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

# convert the object into a dict
ezsigntemplateelementdependency_request_dict = ezsigntemplateelementdependency_request_instance.to_dict()
# create an instance of EzsigntemplateelementdependencyRequest from a dict
ezsigntemplateelementdependency_request_from_dict = EzsigntemplateelementdependencyRequest.from_dict(ezsigntemplateelementdependency_request_dict)

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