Request for POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/extractText
Name | Type | Description | Notes |
---|---|---|---|
i_page | int | The page where the area is located | |
e_section | str | The section of the page | [optional] |
i_x | int | The X coordinate (Horizontal). Require when eSection = 'Region' or eSection is not set. | [optional] |
i_y | int | The Y coordinate (Vertical). Require when eSection = 'Region' or eSection is not set. | [optional] |
i_width | int | Area's width. Require when eSection = 'Region' or eSection is not set. | [optional] |
i_height | int | Area's height. Require when eSection = 'Region' or eSection is not set. | [optional] |
from eZmaxApi.models.ezsigndocument_extract_text_v1_request import EzsigndocumentExtractTextV1Request
# TODO update the JSON string below
json = "{}"
# create an instance of EzsigndocumentExtractTextV1Request from a JSON string
ezsigndocument_extract_text_v1_request_instance = EzsigndocumentExtractTextV1Request.from_json(json)
# print the JSON string representation of the object
print(EzsigndocumentExtractTextV1Request.to_json())
# convert the object into a dict
ezsigndocument_extract_text_v1_request_dict = ezsigndocument_extract_text_v1_request_instance.to_dict()
# create an instance of EzsigndocumentExtractTextV1Request from a dict
ezsigndocument_extract_text_v1_request_from_dict = EzsigndocumentExtractTextV1Request.from_dict(ezsigndocument_extract_text_v1_request_dict)