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.
1162 |
# File 'sig/types.rbs', line 1162
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.
1160 1161 1162 |
# File 'sig/types.rbs', line 1160 def bounding_box @bounding_box end |
#cells ⇒ Array[Array[String]] (readonly)
Returns the value of attribute cells.
1157 1158 1159 |
# File 'sig/types.rbs', line 1157 def cells @cells end |
#markdown ⇒ String (readonly)
Returns the value of attribute markdown.
1158 1159 1160 |
# File 'sig/types.rbs', line 1158 def markdown @markdown end |
#page_number ⇒ Integer (readonly)
Returns the value of attribute page_number.
1159 1160 1161 |
# File 'sig/types.rbs', line 1159 def page_number @page_number end |