Class: Xberg::ExtractionSummary

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeExtractionSummary

Returns a new instance of ExtractionSummary.

Parameters:

  • inputs: (Integer)
  • results: (Integer)
  • errors: (Integer)
  • remote_urls: (Integer)
  • pages_crawled: (Integer)
  • documents_downloaded: (Integer)


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

def initialize: (?inputs: Integer, ?results: Integer, ?errors: Integer, ?remote_urls: Integer, ?pages_crawled: Integer, ?documents_downloaded: Integer) -> void

Instance Attribute Details

#documents_downloadedInteger?

Returns the value of attribute documents_downloaded.

Returns:

  • (Integer, nil)


185
186
187
# File 'sig/types.rbs', line 185

def documents_downloaded
  @documents_downloaded
end

#errorsInteger?

Returns the value of attribute errors.

Returns:

  • (Integer, nil)


182
183
184
# File 'sig/types.rbs', line 182

def errors
  @errors
end

#inputsInteger?

Returns the value of attribute inputs.

Returns:

  • (Integer, nil)


180
181
182
# File 'sig/types.rbs', line 180

def inputs
  @inputs
end

#pages_crawledInteger?

Returns the value of attribute pages_crawled.

Returns:

  • (Integer, nil)


184
185
186
# File 'sig/types.rbs', line 184

def pages_crawled
  @pages_crawled
end

#remote_urlsInteger?

Returns the value of attribute remote_urls.

Returns:

  • (Integer, nil)


183
184
185
# File 'sig/types.rbs', line 183

def remote_urls
  @remote_urls
end

#resultsInteger?

Returns the value of attribute results.

Returns:

  • (Integer, nil)


181
182
183
# File 'sig/types.rbs', line 181

def results
  @results
end