Class: Xberg::PptxExtractionResult
- Inherits:
-
Object
- Object
- Xberg::PptxExtractionResult
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#content ⇒ String
readonly
Returns the value of attribute content.
-
#document ⇒ DocumentStructure?
readonly
Returns the value of attribute document.
-
#hyperlinks ⇒ Array[PresentationHyperlink]
readonly
Returns the value of attribute hyperlinks.
-
#image_count ⇒ Integer
readonly
Returns the value of attribute image_count.
-
#images ⇒ Array[ExtractedImage]
readonly
Returns the value of attribute images.
-
#metadata ⇒ PptxMetadata
readonly
Returns the value of attribute metadata.
-
#office_metadata ⇒ Hash[String, String]
readonly
Returns the value of attribute office_metadata.
-
#page_contents ⇒ Array[PageContent]?
readonly
Returns the value of attribute page_contents.
-
#page_structure ⇒ PageStructure?
readonly
Returns the value of attribute page_structure.
-
#revisions ⇒ Array[DocumentRevision]?
readonly
Returns the value of attribute revisions.
-
#slide_count ⇒ Integer
readonly
Returns the value of attribute slide_count.
-
#table_count ⇒ Integer
readonly
Returns the value of attribute table_count.
Instance Method Summary collapse
-
#initialize ⇒ PptxExtractionResult
constructor
A new instance of PptxExtractionResult.
Constructor Details
#initialize ⇒ PptxExtractionResult
Returns a new instance of PptxExtractionResult.
2114 |
# File 'sig/types.rbs', line 2114 def initialize: (content: String, metadata: PptxMetadata, slide_count: Integer, image_count: Integer, table_count: Integer, images: Array[ExtractedImage], ?page_structure: PageStructure, ?page_contents: Array[PageContent], ?document: DocumentStructure, hyperlinks: Array[PresentationHyperlink], office_metadata: Hash[String, String], ?revisions: Array[DocumentRevision]) -> void |
Instance Attribute Details
#content ⇒ String (readonly)
Returns the value of attribute content.
2101 2102 2103 |
# File 'sig/types.rbs', line 2101 def content @content end |
#document ⇒ DocumentStructure? (readonly)
Returns the value of attribute document.
2109 2110 2111 |
# File 'sig/types.rbs', line 2109 def document @document end |
#hyperlinks ⇒ Array[PresentationHyperlink] (readonly)
Returns the value of attribute hyperlinks.
2110 2111 2112 |
# File 'sig/types.rbs', line 2110 def hyperlinks @hyperlinks end |
#image_count ⇒ Integer (readonly)
Returns the value of attribute image_count.
2104 2105 2106 |
# File 'sig/types.rbs', line 2104 def image_count @image_count end |
#images ⇒ Array[ExtractedImage] (readonly)
Returns the value of attribute images.
2106 2107 2108 |
# File 'sig/types.rbs', line 2106 def images @images end |
#metadata ⇒ PptxMetadata (readonly)
Returns the value of attribute metadata.
2102 2103 2104 |
# File 'sig/types.rbs', line 2102 def end |
#office_metadata ⇒ Hash[String, String] (readonly)
Returns the value of attribute office_metadata.
2111 2112 2113 |
# File 'sig/types.rbs', line 2111 def end |
#page_contents ⇒ Array[PageContent]? (readonly)
Returns the value of attribute page_contents.
2108 2109 2110 |
# File 'sig/types.rbs', line 2108 def page_contents @page_contents end |
#page_structure ⇒ PageStructure? (readonly)
Returns the value of attribute page_structure.
2107 2108 2109 |
# File 'sig/types.rbs', line 2107 def page_structure @page_structure end |
#revisions ⇒ Array[DocumentRevision]? (readonly)
Returns the value of attribute revisions.
2112 2113 2114 |
# File 'sig/types.rbs', line 2112 def revisions @revisions end |
#slide_count ⇒ Integer (readonly)
Returns the value of attribute slide_count.
2103 2104 2105 |
# File 'sig/types.rbs', line 2103 def end |
#table_count ⇒ Integer (readonly)
Returns the value of attribute table_count.
2105 2106 2107 |
# File 'sig/types.rbs', line 2105 def table_count @table_count end |