Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1019 Bytes

EzsigndocumentExtractTextV1Request.md

File metadata and controls

28 lines (22 loc) · 1019 Bytes

EzmaxApi::EzsigndocumentExtractTextV1Request

Properties

Name Type Description Notes
i_page Integer The page where the area is located
e_section String The section of the page [optional]
i_x Integer The X coordinate (Horizontal). Require when eSection = 'Region' or eSection is not set. [optional]
i_y Integer The Y coordinate (Vertical). Require when eSection = 'Region' or eSection is not set. [optional]
i_width Integer Area's width. Require when eSection = 'Region' or eSection is not set. [optional]
i_height Integer Area's height. Require when eSection = 'Region' or eSection is not set. [optional]

Example

require 'Ezmaxapi'

instance = EzmaxApi::EzsigndocumentExtractTextV1Request.new(
  i_page: 1,
  e_section: Region,
  i_x: 1,
  i_y: 1,
  i_width: 1,
  i_height: 1
)