Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 4.58 KB

EzsigntemplateformfieldRequestCompound.md

File metadata and controls

48 lines (39 loc) · 4.58 KB

EzsigntemplateformfieldRequestCompound

An Ezsigntemplateformfield Object and children to create a complete structure

Properties

Name Type Description Notes
pki_ezsigntemplateformfield_id int The unique ID of the Ezsigntemplateformfield [optional]
e_ezsigntemplateformfield_positioning FieldEEzsigntemplateformfieldPositioning [optional] [default to FieldEEzsigntemplateformfieldPositioning.PERCOORDINATES]
i_ezsigntemplatedocumentpage_pagenumber int The page number in the Ezsigntemplatedocument
s_ezsigntemplateformfield_label str The Label for the Ezsigntemplateformfield
s_ezsigntemplateformfield_value str The value for the Ezsigntemplateformfield [optional]
i_ezsigntemplateformfield_x int The X coordinate (Horizontal) where to put the Ezsigntemplateformfield on the Ezsigntemplatepage. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsigntemplateformfield 2 inches from the left border of the page, you would use "200" for the X coordinate. [optional]
i_ezsigntemplateformfield_y int The Y coordinate (Vertical) where to put the Ezsigntemplateformfield on the Ezsigntemplatepage. Coordinate is calculated at 100dpi (dot per inch). So for example, if you want to put the Ezsigntemplateformfield 3 inches from the top border of the page, you would use "300" for the Y coordinate. [optional]
i_ezsigntemplateformfield_width int The Width of the Ezsigntemplateformfield in pixels calculated at 100 DPI
i_ezsigntemplateformfield_height int The Height of the Ezsigntemplateformfield in pixels calculated at 100 DPI
b_ezsigntemplateformfield_autocomplete bool Whether the Ezsigntemplateformfield allows the use of the autocomplete of the browser. This can only be set if eEzsigntemplateformfieldgroupType is Text [optional]
b_ezsigntemplateformfield_selected bool Whether the Ezsigntemplateformfield is selected or not by default. This can only be set if eEzsigntemplateformfieldgroupType is Checkbox or Radio [optional]
e_ezsigntemplateformfield_dependencyrequirement FieldEEzsigntemplateformfieldDependencyrequirement [optional]
s_ezsigntemplateformfield_positioningpattern str The string pattern to search for the positioning. This is not a regexp This will be required if eEzsigntemplateformfieldPositioning is set to PerCoordinates [optional]
i_ezsigntemplateformfield_positioningoffsetx int The offset X This will be required if eEzsigntemplateformfieldPositioning is set to PerCoordinates [optional]
i_ezsigntemplateformfield_positioningoffsety int The offset Y This will be required if eEzsigntemplateformfieldPositioning is set to PerCoordinates [optional]
e_ezsigntemplateformfield_positioningoccurence FieldEEzsigntemplateformfieldPositioningoccurence [optional]
e_ezsigntemplateformfield_horizontalalignment EnumHorizontalalignment [optional]
obj_textstylestatic TextstylestaticRequestCompound [optional]
a_obj_ezsigntemplateelementdependency List[EzsigntemplateelementdependencyRequestCompound] [optional]

Example

from eZmaxApi.models.ezsigntemplateformfield_request_compound import EzsigntemplateformfieldRequestCompound

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

# convert the object into a dict
ezsigntemplateformfield_request_compound_dict = ezsigntemplateformfield_request_compound_instance.to_dict()
# create an instance of EzsigntemplateformfieldRequestCompound from a dict
ezsigntemplateformfield_request_compound_from_dict = EzsigntemplateformfieldRequestCompound.from_dict(ezsigntemplateformfield_request_compound_dict)

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