Class: Xberg::OcrTable
- Inherits:
-
Object
- Object
- Xberg::OcrTable
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#bounding_box ⇒ OcrTableBoundingBox
readonly
Returns the value of attribute bounding_box.
-
#cells ⇒ Array[Array[String]]
readonly
Returns the value of attribute cells.
-
#markdown ⇒ String
readonly
Returns the value of attribute markdown.
-
#page_number ⇒ Integer
readonly
Returns the value of attribute page_number.
Instance Method Summary collapse
-
#initialize ⇒ OcrTable
constructor
A new instance of OcrTable.
Constructor Details
#initialize ⇒ OcrTable
Returns a new instance of OcrTable.
1190 |
# File 'sig/types.rbs', line 1190
def initialize: (cells: Array[Array[String]], markdown: String, page_number: Integer, ?bounding_box: OcrTableBoundingBox) -> void
|
Instance Attribute Details
#bounding_box ⇒ OcrTableBoundingBox (readonly)
Returns the value of attribute bounding_box.
1188 1189 1190 |
# File 'sig/types.rbs', line 1188 def bounding_box @bounding_box end |
#cells ⇒ Array[Array[String]] (readonly)
Returns the value of attribute cells.
1185 1186 1187 |
# File 'sig/types.rbs', line 1185 def cells @cells end |
#markdown ⇒ String (readonly)
Returns the value of attribute markdown.
1186 1187 1188 |
# File 'sig/types.rbs', line 1186 def markdown @markdown end |
#page_number ⇒ Integer (readonly)
Returns the value of attribute page_number.
1187 1188 1189 |
# File 'sig/types.rbs', line 1187 def page_number @page_number end |