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)


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

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

Instance Attribute Details

#imagesInteger?

Returns the value of attribute images.

Returns:

  • (Integer, nil)


950
951
952
# File 'sig/types.rbs', line 950

def images
  @images
end

#pagesInteger?

Returns the value of attribute pages.

Returns:

  • (Integer, nil)


948
949
950
# File 'sig/types.rbs', line 948

def pages
  @pages
end

#tablesInteger?

Returns the value of attribute tables.

Returns:

  • (Integer, nil)


949
950
951
# File 'sig/types.rbs', line 949

def tables
  @tables
end