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:



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

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:



822
823
824
# File 'sig/types.rbs', line 822

def blocks
  @blocks
end

#footnotesArray[Footnote] (readonly)

Returns the value of attribute footnotes.

Returns:



827
828
829
# File 'sig/types.rbs', line 827

def footnotes
  @footnotes
end

#imagesArray[DjotImage] (readonly)

Returns the value of attribute images.

Returns:



825
826
827
# File 'sig/types.rbs', line 825

def images
  @images
end

Returns the value of attribute links.

Returns:



826
827
828
# File 'sig/types.rbs', line 826

def links
  @links
end

#metadataMetadata (readonly)

Returns the value of attribute metadata.

Returns:



823
824
825
# File 'sig/types.rbs', line 823

def 
  @metadata
end

#plain_textString (readonly)

Returns the value of attribute plain_text.

Returns:

  • (String)


821
822
823
# File 'sig/types.rbs', line 821

def plain_text
  @plain_text
end

#tablesArray[Table] (readonly)

Returns the value of attribute tables.

Returns:



824
825
826
# File 'sig/types.rbs', line 824

def tables
  @tables
end