Class: Crawlberg::BatchScrapeResult

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBatchScrapeResult

Returns a new instance of BatchScrapeResult.

Parameters:



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

def initialize: (?url: String, ?result: ScrapeResult, ?error: String) -> void

Instance Attribute Details

#errorString?

Returns the value of attribute error.

Returns:

  • (String, nil)


442
443
444
# File 'sig/types.rbs', line 442

def error
  @error
end

#resultScrapeResult?

Returns the value of attribute result.

Returns:



441
442
443
# File 'sig/types.rbs', line 441

def result
  @result
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


440
441
442
# File 'sig/types.rbs', line 440

def url
  @url
end