Skip to content

Latest commit

 

History

History
54 lines (48 loc) · 4.29 KB

EzsignformfieldgroupRequestCompound.md

File metadata and controls

54 lines (48 loc) · 4.29 KB

EzmaxApi::EzsignformfieldgroupRequestCompound

Properties

Name Type Description Notes
pki_ezsignformfieldgroup_id Integer The unique ID of the Ezsignformfieldgroup [optional]
fki_ezsigndocument_id Integer The unique ID of the Ezsigndocument
e_ezsignformfieldgroup_type FieldEEzsignformfieldgroupType
e_ezsignformfieldgroup_signerrequirement FieldEEzsignformfieldgroupSignerrequirement [optional]
s_ezsignformfieldgroup_label String The Label for the Ezsignformfieldgroup
i_ezsignformfieldgroup_step Integer The step when the Ezsignsigner will be invited to fill the form fields
s_ezsignformfieldgroup_defaultvalue String The default value for the Ezsignformfieldgroup You can use the codes below and they will be replaced at signature time. Code
i_ezsignformfieldgroup_filledmin Integer The minimum number of Ezsignformfield that must be filled in the Ezsignformfieldgroup
i_ezsignformfieldgroup_filledmax Integer The maximum number of Ezsignformfield that must be filled in the Ezsignformfieldgroup
b_ezsignformfieldgroup_readonly Boolean Whether the Ezsignformfieldgroup is read only or not.
i_ezsignformfieldgroup_maxlength Integer The maximum length for the value in the Ezsignformfieldgroup This can only be set if eEzsignformfieldgroupType is Text or Textarea [optional]
b_ezsignformfieldgroup_encrypted Boolean 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 String A regular expression to indicate what values are acceptable for the Ezsignformfieldgroup. This can only be set if eEzsignformfieldgroupType is Text or Textarea [optional]
t_ezsignformfieldgroup_tooltip String 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 Array<EzsignformfieldgroupsignerRequestCompound>
a_obj_dropdown_element Array<CustomDropdownElementRequestCompound> [optional]
a_obj_ezsignformfield Array<EzsignformfieldRequestCompound>

Example

require 'Ezmaxapi'

instance = EzmaxApi::EzsignformfieldgroupRequestCompound.new(
  pki_ezsignformfieldgroup_id: 26,
  fki_ezsigndocument_id: 97,
  e_ezsignformfieldgroup_type: null,
  e_ezsignformfieldgroup_signerrequirement: null,
  s_ezsignformfieldgroup_label: Allergies,
  i_ezsignformfieldgroup_step: 1,
  s_ezsignformfieldgroup_defaultvalue: Foo,
  i_ezsignformfieldgroup_filledmin: 1,
  i_ezsignformfieldgroup_filledmax: 2,
  b_ezsignformfieldgroup_readonly: null,
  i_ezsignformfieldgroup_maxlength: 75,
  b_ezsignformfieldgroup_encrypted: null,
  s_ezsignformfieldgroup_regexp: /[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/,
  t_ezsignformfieldgroup_tooltip: Please enter a valid email address,
  e_ezsignformfieldgroup_tooltipposition: null,
  e_ezsignformfieldgroup_textvalidation: null,
  a_obj_ezsignformfieldgroupsigner: null,
  a_obj_dropdown_element: null,
  a_obj_ezsignformfield: null
)