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)


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

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

Instance Attribute Details

#imagesInteger?

Returns the value of attribute images.

Returns:

  • (Integer, nil)


921
922
923
# File 'sig/types.rbs', line 921

def images
  @images
end

#pagesInteger?

Returns the value of attribute pages.

Returns:

  • (Integer, nil)


919
920
921
# File 'sig/types.rbs', line 919

def pages
  @pages
end

#tablesInteger?

Returns the value of attribute tables.

Returns:

  • (Integer, nil)


920
921
922
# File 'sig/types.rbs', line 920

def tables
  @tables
end