Class: Xberg::OcrTable

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOcrTable

Returns a new instance of OcrTable.

Parameters:

  • cells: (Array[Array[String]])
  • markdown: (String)
  • page_number: (Integer)
  • bounding_box: (OcrTableBoundingBox)


1230
# File 'sig/types.rbs', line 1230

def initialize: (cells: Array[Array[String]], markdown: String, page_number: Integer, ?bounding_box: OcrTableBoundingBox) -> void

Instance Attribute Details

#bounding_boxOcrTableBoundingBox (readonly)

Returns the value of attribute bounding_box.

Returns:



1228
1229
1230
# File 'sig/types.rbs', line 1228

def bounding_box
  @bounding_box
end

#cellsArray[Array[String]] (readonly)

Returns the value of attribute cells.

Returns:

  • (Array[Array[String]])


1225
1226
1227
# File 'sig/types.rbs', line 1225

def cells
  @cells
end

#markdownString (readonly)

Returns the value of attribute markdown.

Returns:

  • (String)


1226
1227
1228
# File 'sig/types.rbs', line 1226

def markdown
  @markdown
end

#page_numberInteger (readonly)

Returns the value of attribute page_number.

Returns:

  • (Integer)


1227
1228
1229
# File 'sig/types.rbs', line 1227

def page_number
  @page_number
end