Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.72 KB

EzsignpageResponseCompound.md

File metadata and controls

36 lines (27 loc) · 1.72 KB

EzsignpageResponseCompound

An Ezsignpage Object and children to create a complete structure

Properties

Name Type Description Notes
pki_ezsignpage_id int The unique ID of the Ezsignpage
i_ezsignpage_widthimage int The Width of the page's image in pixels calculated at 100 DPI
i_ezsignpage_heightimage int The Height of the page's image in pixels calculated at 100 DPI
i_ezsignpage_widthpdf int The Width of the page in points calculated at 72 DPI
i_ezsignpage_heightpdf int The Height of the page in points calculated at 72 DPI
i_ezsignpage_pagenumber int The page number in the Ezsigndocument
s_computed_imageurl str The Url to the Ezsignpage's rasterized image. Url will expire after 5 minutes.

Example

from eZmaxApi.models.ezsignpage_response_compound import EzsignpageResponseCompound

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

# convert the object into a dict
ezsignpage_response_compound_dict = ezsignpage_response_compound_instance.to_dict()
# create an instance of EzsignpageResponseCompound from a dict
ezsignpage_response_compound_form_dict = ezsignpage_response_compound.from_dict(ezsignpage_response_compound_dict)

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