An Ezsignpage Object
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. |
from eZmaxApi.models.ezsignpage_response import EzsignpageResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EzsignpageResponse from a JSON string
ezsignpage_response_instance = EzsignpageResponse.from_json(json)
# print the JSON string representation of the object
print(EzsignpageResponse.to_json())
# convert the object into a dict
ezsignpage_response_dict = ezsignpage_response_instance.to_dict()
# create an instance of EzsignpageResponse from a dict
ezsignpage_response_from_dict = EzsignpageResponse.from_dict(ezsignpage_response_dict)