Class: Crawlberg::BatchCrawlResult

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBatchCrawlResult

Returns a new instance of BatchCrawlResult.

Parameters:



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

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

Instance Attribute Details

#errorString?

Returns the value of attribute error.

Returns:

  • (String, nil)


450
451
452
# File 'sig/types.rbs', line 450

def error
  @error
end

#resultCrawlResult?

Returns the value of attribute result.

Returns:



449
450
451
# File 'sig/types.rbs', line 449

def result
  @result
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


448
449
450
# File 'sig/types.rbs', line 448

def url
  @url
end