Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 4.85 KB

EzsigntemplateformfieldgroupRequestCompound.md

File metadata and controls

49 lines (40 loc) · 4.85 KB

EzsigntemplateformfieldgroupRequestCompound

A Ezsigntemplateformfieldgroup Object and children

Properties

Name Type Description Notes
pki_ezsigntemplateformfieldgroup_id int The unique ID of the Ezsigntemplateformfieldgroup [optional]
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]
s_ezsigntemplateformfieldgroup_textvalidationcustommessage str Description of validation rule. Show by signatory. [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[EzsigntemplateformfieldgroupsignerRequestCompound]
a_obj_dropdown_element List[CustomDropdownElementRequestCompound] [optional]
a_obj_ezsigntemplateformfield List[EzsigntemplateformfieldRequestCompound]

Example

from eZmaxApi.models.ezsigntemplateformfieldgroup_request_compound import EzsigntemplateformfieldgroupRequestCompound

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

# convert the object into a dict
ezsigntemplateformfieldgroup_request_compound_dict = ezsigntemplateformfieldgroup_request_compound_instance.to_dict()
# create an instance of EzsigntemplateformfieldgroupRequestCompound from a dict
ezsigntemplateformfieldgroup_request_compound_from_dict = EzsigntemplateformfieldgroupRequestCompound.from_dict(ezsigntemplateformfieldgroup_request_compound_dict)

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