Skip to content

Latest commit

 

History

History
70 lines (64 loc) · 6.59 KB

EzsigntemplatesignatureRequest.md

File metadata and controls

70 lines (64 loc) · 6.59 KB

EzmaxApi::EzsigntemplatesignatureRequest

Properties

Name Type Description Notes
pki_ezsigntemplatesignature_id Integer The unique ID of the Ezsigntemplatesignature [optional]
fki_ezsigntemplatedocument_id Integer The unique ID of the Ezsigntemplatedocument
fki_ezsigntemplatesigner_id Integer The unique ID of the Ezsigntemplatesigner
fki_ezsigntemplatesigner_id_validation Integer The unique ID of the Ezsigntemplatesigner [optional]
e_ezsigntemplatesignature_positioning FieldEEzsigntemplatesignaturePositioning [optional]
i_ezsigntemplatedocumentpage_pagenumber Integer The page number in the Ezsigntemplatedocument
i_ezsigntemplatesignature_x Integer The X coordinate (Horizontal) where to put the Ezsigntemplatesignature on the page. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsigntemplatesignature 2 inches from the left border of the page, you would use "200" for the X coordinate. [optional]
i_ezsigntemplatesignature_y Integer The Y coordinate (Vertical) where to put the Ezsigntemplatesignature on the page. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsigntemplatesignature 3 inches from the top border of the page, you would use "300" for the Y coordinate. [optional]
i_ezsigntemplatesignature_width Integer The width of the Ezsigntemplatesignature. Size is calculated at 100dpi (dot per inch). So for example, if you want the Ezsigntemplatesignature to have a width of 2 inches, you would use "200" for the iEzsigntemplatesignatureWidth. [optional]
i_ezsigntemplatesignature_height Integer The height of the Ezsigntemplatesignature. Size is calculated at 100dpi (dot per inch). So for example, if you want the Ezsigntemplatesignature to have an height of 2 inches, you would use "200" for the iEzsigntemplatesignatureHeight. [optional]
i_ezsigntemplatesignature_step Integer The step when the Ezsigntemplatesigner will be invited to sign
e_ezsigntemplatesignature_type FieldEEzsigntemplatesignatureType
t_ezsigntemplatesignature_tooltip String A tooltip that will be presented to Ezsigntemplatesigner about the Ezsigntemplatesignature [optional]
e_ezsigntemplatesignature_tooltipposition FieldEEzsigntemplatesignatureTooltipposition [optional]
e_ezsigntemplatesignature_font FieldEEzsigntemplatesignatureFont [optional]
b_ezsigntemplatesignature_required Boolean Whether the Ezsigntemplatesignature is required or not. This field is relevant only with Ezsigntemplatesignature with eEzsigntemplatesignatureType = Attachments. [optional]
e_ezsigntemplatesignature_attachmentnamesource FieldEEzsigntemplatesignatureAttachmentnamesource [optional]
s_ezsigntemplatesignature_attachmentdescription String The description attached to the attachment name added in Ezsigntemplatesignature of eEzsigntemplatesignatureType Attachments [optional]
i_ezsigntemplatesignature_validationstep Integer The step when the Ezsigntemplatesigner will be invited to validate the Ezsigntemplatesignature of eEzsigntemplatesignatureType Attachments [optional]
i_ezsigntemplatesignature_maxlength Integer The maximum length for the value in the Ezsigntemplatesignature This can only be set if eEzsigntemplatesignatureType is FieldText or FieldTextarea [optional]
s_ezsigntemplatesignature_regexp String A regular expression to indicate what values are acceptable for the Ezsigntemplatesignature. This can only be set if eEzsigntemplatesignatureType is Text or Textarea [optional]
e_ezsigntemplatesignature_textvalidation EnumTextvalidation [optional]
e_ezsigntemplatesignature_dependencyrequirement FieldEEzsigntemplatesignatureDependencyrequirement [optional]
s_ezsigntemplatesignature_positioningpattern String The string pattern to search for the positioning. This is not a regexp This will be required if eEzsigntemplatesignaturePositioning is set to PerCoordinates [optional]
i_ezsigntemplatesignature_positioningoffsetx Integer The offset X This will be required if eEzsigntemplatesignaturePositioning is set to PerCoordinates [optional]
i_ezsigntemplatesignature_positioningoffsety Integer The offset Y This will be required if eEzsigntemplatesignaturePositioning is set to PerCoordinates [optional]
e_ezsigntemplatesignature_positioningoccurence FieldEEzsigntemplatesignaturePositioningoccurence [optional]

Example

require 'Ezmaxapi'

instance = EzmaxApi::EzsigntemplatesignatureRequest.new(
  pki_ezsigntemplatesignature_id: 99,
  fki_ezsigntemplatedocument_id: 133,
  fki_ezsigntemplatesigner_id: 9,
  fki_ezsigntemplatesigner_id_validation: 9,
  e_ezsigntemplatesignature_positioning: null,
  i_ezsigntemplatedocumentpage_pagenumber: 1,
  i_ezsigntemplatesignature_x: 200,
  i_ezsigntemplatesignature_y: 300,
  i_ezsigntemplatesignature_width: 200,
  i_ezsigntemplatesignature_height: 200,
  i_ezsigntemplatesignature_step: 1,
  e_ezsigntemplatesignature_type: null,
  t_ezsigntemplatesignature_tooltip: Please sign here if you agree to the terms,
  e_ezsigntemplatesignature_tooltipposition: null,
  e_ezsigntemplatesignature_font: null,
  b_ezsigntemplatesignature_required: null,
  e_ezsigntemplatesignature_attachmentnamesource: null,
  s_ezsigntemplatesignature_attachmentdescription: Attachment,
  i_ezsigntemplatesignature_validationstep: 1,
  i_ezsigntemplatesignature_maxlength: 75,
  s_ezsigntemplatesignature_regexp: /[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/,
  e_ezsigntemplatesignature_textvalidation: null,
  e_ezsigntemplatesignature_dependencyrequirement: null,
  s_ezsigntemplatesignature_positioningpattern: Signature,
  i_ezsigntemplatesignature_positioningoffsetx: 200,
  i_ezsigntemplatesignature_positioningoffsety: 200,
  e_ezsigntemplatesignature_positioningoccurence: null
)