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.
1104 |
# File 'sig/types.rbs', line 1104
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.
1092 1093 1094 |
# File 'sig/types.rbs', line 1092 def content @content end |
#document ⇒ DocumentStructure (readonly)
Returns the value of attribute document.
1100 1101 1102 |
# File 'sig/types.rbs', line 1100 def document @document end |
#image_count ⇒ Integer (readonly)
Returns the value of attribute image_count.
1095 1096 1097 |
# File 'sig/types.rbs', line 1095 def image_count @image_count end |
#images ⇒ Array[ExtractedImage] (readonly)
Returns the value of attribute images.
1097 1098 1099 |
# File 'sig/types.rbs', line 1097 def images @images end |
#metadata ⇒ PptxMetadata (readonly)
Returns the value of attribute metadata.
1093 1094 1095 |
# File 'sig/types.rbs', line 1093 def @metadata end |
#office_metadata ⇒ Hash[String, String] (readonly)
Returns the value of attribute office_metadata.
1101 1102 1103 |
# File 'sig/types.rbs', line 1101 def @office_metadata end |
#page_contents ⇒ Array[PageContent] (readonly)
Returns the value of attribute page_contents.
1099 1100 1101 |
# File 'sig/types.rbs', line 1099 def page_contents @page_contents end |
#page_structure ⇒ PageStructure (readonly)
Returns the value of attribute page_structure.
1098 1099 1100 |
# File 'sig/types.rbs', line 1098 def page_structure @page_structure end |
#revisions ⇒ Array[DocumentRevision] (readonly)
Returns the value of attribute revisions.
1102 1103 1104 |
# File 'sig/types.rbs', line 1102 def revisions @revisions end |
#slide_count ⇒ Integer (readonly)
Returns the value of attribute slide_count.
1094 1095 1096 |
# File 'sig/types.rbs', line 1094 def @slide_count end |
#table_count ⇒ Integer (readonly)
Returns the value of attribute table_count.
1096 1097 1098 |
# File 'sig/types.rbs', line 1096 def table_count @table_count end |