Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 4.18 KB

EzsigntemplateformfieldgroupResponse.md

File metadata and controls

45 lines (36 loc) · 4.18 KB

EzsigntemplateformfieldgroupResponse

A Ezsigntemplateformfieldgroup Object

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]

Example

from eZmaxApi.models.ezsigntemplateformfieldgroup_response import EzsigntemplateformfieldgroupResponse

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

# convert the object into a dict
ezsigntemplateformfieldgroup_response_dict = ezsigntemplateformfieldgroup_response_instance.to_dict()
# create an instance of EzsigntemplateformfieldgroupResponse from a dict
ezsigntemplateformfieldgroup_response_form_dict = ezsigntemplateformfieldgroup_response.from_dict(ezsigntemplateformfieldgroup_response_dict)

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