Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 3.6 KB

EzsigntemplatesignaturecustomdateRequest.md

File metadata and controls

28 lines (22 loc) · 3.6 KB

EzmaxApi::EzsigntemplatesignaturecustomdateRequest

Properties

Name Type Description Notes
pki_ezsigntemplatesignaturecustomdate_id Integer The unique ID of the Ezsigntemplatesignaturecustomdate [optional]
i_ezsigntemplatesignaturecustomdate_x Integer The X coordinate (Horizontal) where to put the Ezsigntemplatesignaturecustomdate on the page. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsigntemplatesignaturecustomdate 2 inches from the left border of the page, you would use "200" for the X coordinate. [optional]
i_ezsigntemplatesignaturecustomdate_y Integer The Y coordinate (Vertical) where to put the Ezsigntemplatesignaturecustomdate on the page. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsigntemplatesignaturecustomdate 3 inches from the top border of the page, you would use "300" for the Y coordinate. [optional]
i_ezsigntemplatesignaturecustomdate_offsetx Integer The X coordinate (Horizontal) where to put the Ezsigntemplatesignaturecustomdate on the page. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsigntemplatesignaturecustomdate 2 inches from the left of the signature, you would use "200" for the X coordinate. [optional]
i_ezsigntemplatesignaturecustomdate_offsety Integer The X coordinate (Horizontal) where to put the Ezsigntemplatesignaturecustomdate on the page. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsigntemplatesignaturecustomdate 2 inches from the top of the signature, you would use "200" for the Y coordinate. [optional]
s_ezsigntemplatesignaturecustomdate_format String The custom date format to use You can use the codes below and they will be replaced at signature time. Text values like month and day names will be rendered in the proper language. Other text will be left as-is. The codes examples below are based on the following datetime: Thursday, January 6, 2022 at 08:07:09 EST For example, the format "Signature date: {MM}/{DD}/{YYYY} {hh}:{mm}" would become "Signature date: 01/06/2022 08:07" Year Code

Example

require 'Ezmaxapi'

instance = EzmaxApi::EzsigntemplatesignaturecustomdateRequest.new(
  pki_ezsigntemplatesignaturecustomdate_id: 58,
  i_ezsigntemplatesignaturecustomdate_x: 200,
  i_ezsigntemplatesignaturecustomdate_y: 300,
  i_ezsigntemplatesignaturecustomdate_offsetx: 200,
  i_ezsigntemplatesignaturecustomdate_offsety: 200,
  s_ezsigntemplatesignaturecustomdate_format: Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}
)