Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.8 KB

EzsigndocumentExtractTextV1Request.md

File metadata and controls

35 lines (26 loc) · 1.8 KB

EzsigndocumentExtractTextV1Request

Request for POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/extractText

Properties

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]

Example

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)

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