Skip to content

Files

Latest commit

author
Api (Codebuild)
Jan 14, 2025
1900452 · Jan 14, 2025

History

History
33 lines (24 loc) · 3.59 KB

EzsigntemplatesignaturecustomdateResponseCompoundV2.md

File metadata and controls

33 lines (24 loc) · 3.59 KB

EzsigntemplatesignaturecustomdateResponseCompoundV2

An Ezsigntemplatesignaturecustomdate Object and children to create a complete structure

Properties

Name Type Description Notes
pki_ezsigntemplatesignaturecustomdate_id int The unique ID of the Ezsigntemplatesignaturecustomdate
i_ezsigntemplatesignaturecustomdate_offsetx int 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.
i_ezsigntemplatesignaturecustomdate_offsety int 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.
s_ezsigntemplatesignaturecustomdate_format str 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

from eZmaxApi.models.ezsigntemplatesignaturecustomdate_response_compound_v2 import EzsigntemplatesignaturecustomdateResponseCompoundV2

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

# convert the object into a dict
ezsigntemplatesignaturecustomdate_response_compound_v2_dict = ezsigntemplatesignaturecustomdate_response_compound_v2_instance.to_dict()
# create an instance of EzsigntemplatesignaturecustomdateResponseCompoundV2 from a dict
ezsigntemplatesignaturecustomdate_response_compound_v2_from_dict = EzsigntemplatesignaturecustomdateResponseCompoundV2.from_dict(ezsigntemplatesignaturecustomdate_response_compound_v2_dict)

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