Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 4.74 KB

EzsigntemplateformfieldgroupResponseCompound.md

File metadata and controls

48 lines (39 loc) · 4.74 KB

EzsigntemplateformfieldgroupResponseCompound

A Ezsigntemplateformfieldgroup Object and children

Properties

Name Type Description Notes
pki_ezsigntemplateformfieldgroup_id int The unique ID of the Ezsigntemplateformfieldgroup
fki_ezsigntemplatedocument_id int The unique ID of the Ezsigntemplatedocument
e_ezsigntemplateformfieldgroup_type FieldEEzsigntemplateformfieldgroupType
e_ezsigntemplateformfieldgroup_signerrequirement FieldEEzsigntemplateformfieldgroupSignerrequirement [optional]
s_ezsigntemplateformfieldgroup_label str The Label for the Ezsigntemplateformfieldgroup
i_ezsigntemplateformfieldgroup_step int The step when the Ezsigntemplatesigner will be invited to fill the form fields
s_ezsigntemplateformfieldgroup_defaultvalue str The default value for the Ezsigntemplateformfieldgroup You can use the codes below and they will be replaced at signature time. Code
i_ezsigntemplateformfieldgroup_filledmin int The minimum number of Ezsigntemplateformfield that must be filled in the Ezsigntemplateformfieldgroup
i_ezsigntemplateformfieldgroup_filledmax int The maximum number of Ezsigntemplateformfield that must be filled in the Ezsigntemplateformfieldgroup
b_ezsigntemplateformfieldgroup_readonly bool Whether the Ezsigntemplateformfieldgroup is read only or not.
i_ezsigntemplateformfieldgroup_maxlength int The maximum length for the value in the Ezsigntemplateformfieldgroup This can only be set if eEzsigntemplateformfieldgroupType is Text or Textarea [optional]
b_ezsigntemplateformfieldgroup_encrypted bool Whether the Ezsigntemplateformfieldgroup is encrypted in the database or not. Encrypted values are not displayed on the Ezsigndocument. This can only be set if eEzsigntemplateformfieldgroupType is Text or Textarea [optional]
s_ezsigntemplateformfieldgroup_regexp str A regular expression to indicate what values are acceptable for the Ezsigntemplateformfieldgroup. This can only be set if eEzsigntemplateformfieldgroupType is Text or Textarea [optional]
e_ezsigntemplateformfieldgroup_textvalidation EnumTextvalidation [optional]
t_ezsigntemplateformfieldgroup_tooltip str A tooltip that will be presented to Ezsigntemplatesigner about the Ezsigntemplateformfieldgroup [optional]
e_ezsigntemplateformfieldgroup_tooltipposition FieldEEzsigntemplateformfieldgroupTooltipposition [optional]
a_obj_ezsigntemplateformfieldgroupsigner List[EzsigntemplateformfieldgroupsignerResponseCompound]
a_obj_dropdown_element List[CustomDropdownElementResponseCompound] [optional]
a_obj_ezsigntemplateformfield List[EzsigntemplateformfieldResponseCompound]

Example

from eZmaxApi.models.ezsigntemplateformfieldgroup_response_compound import EzsigntemplateformfieldgroupResponseCompound

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

# convert the object into a dict
ezsigntemplateformfieldgroup_response_compound_dict = ezsigntemplateformfieldgroup_response_compound_instance.to_dict()
# create an instance of EzsigntemplateformfieldgroupResponseCompound from a dict
ezsigntemplateformfieldgroup_response_compound_form_dict = ezsigntemplateformfieldgroup_response_compound.from_dict(ezsigntemplateformfieldgroup_response_compound_dict)

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