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)


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

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

Instance Attribute Details

#imagesInteger?

Returns the value of attribute images.

Returns:

  • (Integer, nil)


892
893
894
# File 'sig/types.rbs', line 892

def images
  @images
end

#pagesInteger?

Returns the value of attribute pages.

Returns:

  • (Integer, nil)


890
891
892
# File 'sig/types.rbs', line 890

def pages
  @pages
end

#tablesInteger?

Returns the value of attribute tables.

Returns:

  • (Integer, nil)


891
892
893
# File 'sig/types.rbs', line 891

def tables
  @tables
end