Class: Xberg::DjotContent

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDjotContent

Returns a new instance of DjotContent.

Parameters:



770
# File 'sig/types.rbs', line 770

def initialize: (plain_text: String, blocks: Array[FormattedBlock], metadata: Metadata, tables: Array[Table], images: Array[DjotImage], links: Array[DjotLink], footnotes: Array[Footnote]) -> void

Instance Attribute Details

#blocksArray[FormattedBlock] (readonly)

Returns the value of attribute blocks.

Returns:



763
764
765
# File 'sig/types.rbs', line 763

def blocks
  @blocks
end

#footnotesArray[Footnote] (readonly)

Returns the value of attribute footnotes.

Returns:



768
769
770
# File 'sig/types.rbs', line 768

def footnotes
  @footnotes
end

#imagesArray[DjotImage] (readonly)

Returns the value of attribute images.

Returns:



766
767
768
# File 'sig/types.rbs', line 766

def images
  @images
end

Returns the value of attribute links.

Returns:



767
768
769
# File 'sig/types.rbs', line 767

def links
  @links
end

#metadataMetadata (readonly)

Returns the value of attribute metadata.

Returns:



764
765
766
# File 'sig/types.rbs', line 764

def 
  @metadata
end

#plain_textString (readonly)

Returns the value of attribute plain_text.

Returns:

  • (String)


762
763
764
# File 'sig/types.rbs', line 762

def plain_text
  @plain_text
end

#tablesArray[Table] (readonly)

Returns the value of attribute tables.

Returns:



765
766
767
# File 'sig/types.rbs', line 765

def tables
  @tables
end