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:



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

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:



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

def blocks
  @blocks
end

#footnotesArray[Footnote] (readonly)

Returns the value of attribute footnotes.

Returns:



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

def footnotes
  @footnotes
end

#imagesArray[DjotImage] (readonly)

Returns the value of attribute images.

Returns:



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

def images
  @images
end

Returns the value of attribute links.

Returns:



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

def links
  @links
end

#metadataMetadata (readonly)

Returns the value of attribute metadata.

Returns:



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

def 
  @metadata
end

#plain_textString (readonly)

Returns the value of attribute plain_text.

Returns:

  • (String)


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

def plain_text
  @plain_text
end

#tablesArray[Table] (readonly)

Returns the value of attribute tables.

Returns:



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

def tables
  @tables
end