Class: LiterLlm::OcrPage
- Inherits:
-
Object
- Object
- LiterLlm::OcrPage
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#dimensions ⇒ PageDimensions?
readonly
Returns the value of attribute dimensions.
-
#images ⇒ Array[OcrImage]?
readonly
Returns the value of attribute images.
-
#index ⇒ Integer
readonly
Returns the value of attribute index.
-
#markdown ⇒ String
readonly
Returns the value of attribute markdown.
Instance Method Summary collapse
-
#initialize ⇒ OcrPage
constructor
A new instance of OcrPage.
Constructor Details
#initialize ⇒ OcrPage
Returns a new instance of OcrPage.
502 |
# File 'sig/types.rbs', line 502
def initialize: (index: Integer, markdown: String, ?images: Array[OcrImage], ?dimensions: PageDimensions) -> void
|
Instance Attribute Details
#dimensions ⇒ PageDimensions? (readonly)
Returns the value of attribute dimensions.
500 501 502 |
# File 'sig/types.rbs', line 500 def dimensions @dimensions end |
#images ⇒ Array[OcrImage]? (readonly)
Returns the value of attribute images.
499 500 501 |
# File 'sig/types.rbs', line 499 def images @images end |
#index ⇒ Integer (readonly)
Returns the value of attribute index.
497 498 499 |
# File 'sig/types.rbs', line 497 def index @index end |
#markdown ⇒ String (readonly)
Returns the value of attribute markdown.
498 499 500 |
# File 'sig/types.rbs', line 498 def markdown @markdown end |