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.
1151 |
# File 'sig/types.rbs', line 1151
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.
1149 1150 1151 |
# File 'sig/types.rbs', line 1149 def bounding_box @bounding_box end |
#cells ⇒ Array[Array[String]] (readonly)
Returns the value of attribute cells.
1146 1147 1148 |
# File 'sig/types.rbs', line 1146 def cells @cells end |
#markdown ⇒ String (readonly)
Returns the value of attribute markdown.
1147 1148 1149 |
# File 'sig/types.rbs', line 1147 def markdown @markdown end |
#page_number ⇒ Integer (readonly)
Returns the value of attribute page_number.
1148 1149 1150 |
# File 'sig/types.rbs', line 1148 def page_number @page_number end |