Class: Xberg::DocumentCounts

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDocumentCounts

Returns a new instance of DocumentCounts.

Parameters:

  • pages: (Integer)
  • tables: (Integer)
  • images: (Integer)


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

def initialize: (?pages: Integer, ?tables: Integer, ?images: Integer) -> void

Instance Attribute Details

#imagesInteger (readonly)

Returns the value of attribute images.

Returns:

  • (Integer)


582
583
584
# File 'sig/types.rbs', line 582

def images
  @images
end

#pagesInteger (readonly)

Returns the value of attribute pages.

Returns:

  • (Integer)


580
581
582
# File 'sig/types.rbs', line 580

def pages
  @pages
end

#tablesInteger (readonly)

Returns the value of attribute tables.

Returns:

  • (Integer)


581
582
583
# File 'sig/types.rbs', line 581

def tables
  @tables
end