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.
-
#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.
1144 |
# File 'sig/types.rbs', line 1144
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, office_metadata: Hash[String, String], ?revisions: Array[DocumentRevision]) -> void
|
Instance Attribute Details
#content ⇒ String (readonly)
Returns the value of attribute content.
1132 1133 1134 |
# File 'sig/types.rbs', line 1132 def content @content end |
#document ⇒ DocumentStructure (readonly)
Returns the value of attribute document.
1140 1141 1142 |
# File 'sig/types.rbs', line 1140 def document @document end |
#image_count ⇒ Integer (readonly)
Returns the value of attribute image_count.
1135 1136 1137 |
# File 'sig/types.rbs', line 1135 def image_count @image_count end |
#images ⇒ Array[ExtractedImage] (readonly)
Returns the value of attribute images.
1137 1138 1139 |
# File 'sig/types.rbs', line 1137 def images @images end |
#metadata ⇒ PptxMetadata (readonly)
Returns the value of attribute metadata.
1133 1134 1135 |
# File 'sig/types.rbs', line 1133 def @metadata end |
#office_metadata ⇒ Hash[String, String] (readonly)
Returns the value of attribute office_metadata.
1141 1142 1143 |
# File 'sig/types.rbs', line 1141 def @office_metadata end |
#page_contents ⇒ Array[PageContent] (readonly)
Returns the value of attribute page_contents.
1139 1140 1141 |
# File 'sig/types.rbs', line 1139 def page_contents @page_contents end |
#page_structure ⇒ PageStructure (readonly)
Returns the value of attribute page_structure.
1138 1139 1140 |
# File 'sig/types.rbs', line 1138 def page_structure @page_structure end |
#revisions ⇒ Array[DocumentRevision] (readonly)
Returns the value of attribute revisions.
1142 1143 1144 |
# File 'sig/types.rbs', line 1142 def revisions @revisions end |
#slide_count ⇒ Integer (readonly)
Returns the value of attribute slide_count.
1134 1135 1136 |
# File 'sig/types.rbs', line 1134 def @slide_count end |
#table_count ⇒ Integer (readonly)
Returns the value of attribute table_count.
1136 1137 1138 |
# File 'sig/types.rbs', line 1136 def table_count @table_count end |