Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 5.11 KB

CustomEzsignformfieldgroupCreateEzsignelementsPositionedByWordRequest.md

File metadata and controls

50 lines (41 loc) · 5.11 KB

CustomEzsignformfieldgroupCreateEzsignelementsPositionedByWordRequest

An Ezsignformfieldgroup Object in the context of a createEzsignelementsPositionedByWord path

Properties

Name Type Description Notes
pki_ezsignformfieldgroup_id int The unique ID of the Ezsignformfieldgroup [optional]
fki_ezsigndocument_id int The unique ID of the Ezsigndocument
e_ezsignformfieldgroup_type FieldEEzsignformfieldgroupType
e_ezsignformfieldgroup_signerrequirement FieldEEzsignformfieldgroupSignerrequirement [optional]
s_ezsignformfieldgroup_label str The Label for the Ezsignformfieldgroup
i_ezsignformfieldgroup_step int The step when the Ezsignsigner will be invited to fill the form fields
s_ezsignformfieldgroup_defaultvalue str The default value for the Ezsignformfieldgroup You can use the codes below and they will be replaced at signature time. Code
i_ezsignformfieldgroup_filledmin int The minimum number of Ezsignformfield that must be filled in the Ezsignformfieldgroup
i_ezsignformfieldgroup_filledmax int The maximum number of Ezsignformfield that must be filled in the Ezsignformfieldgroup
b_ezsignformfieldgroup_readonly bool Whether the Ezsignformfieldgroup is read only or not.
i_ezsignformfieldgroup_maxlength int The maximum length for the value in the Ezsignformfieldgroup This can only be set if eEzsignformfieldgroupType is Text or Textarea [optional]
b_ezsignformfieldgroup_encrypted bool Whether the Ezsignformfieldgroup is encrypted in the database or not. Encrypted values are not displayed on the Ezsigndocument. This can only be set if eEzsignformfieldgroupType is Text or Textarea [optional]
s_ezsignformfieldgroup_regexp str A regular expression to indicate what values are acceptable for the Ezsignformfieldgroup. This can only be set if eEzsignformfieldgroupType is Text or Textarea [optional]
s_ezsignformfieldgroup_textvalidationcustommessage str Description of validation rule. Show by signatory. [optional]
t_ezsignformfieldgroup_tooltip str A tooltip that will be presented to Ezsignsigner about the Ezsignformfieldgroup [optional]
e_ezsignformfieldgroup_tooltipposition FieldEEzsignformfieldgroupTooltipposition [optional]
e_ezsignformfieldgroup_textvalidation EnumTextvalidation [optional]
a_obj_ezsignformfieldgroupsigner List[EzsignformfieldgroupsignerRequestCompound]
a_obj_dropdown_element List[CustomDropdownElementRequestCompound] [optional]
a_obj_ezsignformfield List[EzsignformfieldRequestCompound]
obj_createezsignelementspositionedbyword CustomCreateEzsignelementsPositionedByWordRequest

Example

from eZmaxApi.models.custom_ezsignformfieldgroup_create_ezsignelements_positioned_by_word_request import CustomEzsignformfieldgroupCreateEzsignelementsPositionedByWordRequest

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

# convert the object into a dict
custom_ezsignformfieldgroup_create_ezsignelements_positioned_by_word_request_dict = custom_ezsignformfieldgroup_create_ezsignelements_positioned_by_word_request_instance.to_dict()
# create an instance of CustomEzsignformfieldgroupCreateEzsignelementsPositionedByWordRequest from a dict
custom_ezsignformfieldgroup_create_ezsignelements_positioned_by_word_request_from_dict = CustomEzsignformfieldgroupCreateEzsignelementsPositionedByWordRequest.from_dict(custom_ezsignformfieldgroup_create_ezsignelements_positioned_by_word_request_dict)

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