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:



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

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:



793
794
795
# File 'sig/types.rbs', line 793

def blocks
  @blocks
end

#footnotesArray[Footnote] (readonly)

Returns the value of attribute footnotes.

Returns:



798
799
800
# File 'sig/types.rbs', line 798

def footnotes
  @footnotes
end

#imagesArray[DjotImage] (readonly)

Returns the value of attribute images.

Returns:



796
797
798
# File 'sig/types.rbs', line 796

def images
  @images
end

Returns the value of attribute links.

Returns:



797
798
799
# File 'sig/types.rbs', line 797

def links
  @links
end

#metadataMetadata (readonly)

Returns the value of attribute metadata.

Returns:



794
795
796
# File 'sig/types.rbs', line 794

def 
  @metadata
end

#plain_textString (readonly)

Returns the value of attribute plain_text.

Returns:

  • (String)


792
793
794
# File 'sig/types.rbs', line 792

def plain_text
  @plain_text
end

#tablesArray[Table] (readonly)

Returns the value of attribute tables.

Returns:



795
796
797
# File 'sig/types.rbs', line 795

def tables
  @tables
end