Class: Xberg::ExtractionResult

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeExtractionResult



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

def initialize: (?results: Array[ExtractedDocument], ?errors: Array[ExtractionErrorItem], ?summary: ExtractionSummary, ?crawl_final_urls: Array[String], ?crawl_redirect_count: Integer, ?crawl_unique_normalized_urls: Array[String]) -> void

Instance Attribute Details

#crawl_final_urlsArray[String] (readonly)

Returns the value of attribute crawl_final_urls.



1014
1015
1016
# File 'sig/types.rbs', line 1014

def crawl_final_urls
  @crawl_final_urls
end

#crawl_redirect_countInteger (readonly)

Returns the value of attribute crawl_redirect_count.



1015
1016
1017
# File 'sig/types.rbs', line 1015

def crawl_redirect_count
  @crawl_redirect_count
end

#crawl_unique_normalized_urlsArray[String] (readonly)

Returns the value of attribute crawl_unique_normalized_urls.



1016
1017
1018
# File 'sig/types.rbs', line 1016

def crawl_unique_normalized_urls
  @crawl_unique_normalized_urls
end

#errorsArray[ExtractionErrorItem] (readonly)

Returns the value of attribute errors.



1012
1013
1014
# File 'sig/types.rbs', line 1012

def errors
  @errors
end

#resultsArray[ExtractedDocument] (readonly)

Returns the value of attribute results.



1011
1012
1013
# File 'sig/types.rbs', line 1011

def results
  @results
end

#summaryExtractionSummary (readonly)

Returns the value of attribute summary.



1013
1014
1015
# File 'sig/types.rbs', line 1013

def summary
  @summary
end