Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 3.1 KB

EzsignannotationRequestCompound.md

File metadata and controls

41 lines (32 loc) · 3.1 KB

EzsignannotationRequestCompound

A Ezsignannotation Object and children

Properties

Name Type Description Notes
pki_ezsignannotation_id int The unique ID of the Ezsignannotation [optional]
fki_ezsigndocument_id int The unique ID of the Ezsigndocument
e_ezsignannotation_horizontalalignment EnumHorizontalalignment [optional]
e_ezsignannotation_verticalalignment EnumVerticalalignment [optional]
e_ezsignannotation_type FieldEEzsignannotationType
i_ezsignannotation_x int The X coordinate (Horizontal) where to put the Ezsignannotation on the page. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsignannotation 2 inches from the left border of the page, you would use "200" for the X coordinate.
i_ezsignannotation_y int The Y coordinate (Vertical) where to put the Ezsignannotation on the page. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsignannotation 3 inches from the top border of the page, you would use "300" for the Y coordinate.
i_ezsignannotation_width int The Width of the Ezsignannotation. Width is calculated at 100dpi (dot per inch). So for example, if you want to have the width of the Ezsignannotation to be 3 inches, you would use "300" for the Width. [optional]
i_ezsignannotation_height int The Height of the Ezsignannotation. Height is calculated at 100dpi (dot per inch). So for example, if you want to have the height of the Ezsignannotation to be 2 inches, you would use "200" for the Height. This can only be set if eEzsignannotationType is StrikethroughBlock or Text [optional]
s_ezsignannotation_text str The Text of the Ezsignannotation [optional]
i_ezsignpage_pagenumber int The page number in the Ezsigndocument
obj_textstylestatic TextstylestaticRequestCompound [optional]

Example

from eZmaxApi.models.ezsignannotation_request_compound import EzsignannotationRequestCompound

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

# convert the object into a dict
ezsignannotation_request_compound_dict = ezsignannotation_request_compound_instance.to_dict()
# create an instance of EzsignannotationRequestCompound from a dict
ezsignannotation_request_compound_from_dict = EzsignannotationRequestCompound.from_dict(ezsignannotation_request_compound_dict)

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