Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 828 Bytes

File metadata and controls

30 lines (24 loc) · 828 Bytes

RankVectors::Crawl

Properties

Name Type Description Notes
id String Unique crawl identifier
project_id String Project identifier
status String Crawl status
started_at Time Crawl start timestamp
completed_at Time Crawl completion timestamp [optional]
pages_crawled Integer Number of pages crawled [optional]
error_message String Error message if crawl failed [optional]

Example

require 'rankvectors'

instance = RankVectors::Crawl.new(
  id: crawl-123,
  project_id: proj-123,
  status: completed,
  started_at: 2025-01-15T10:00Z,
  completed_at: 2025-01-15T10:05Z,
  pages_crawled: 150,
  error_message: Connection timeout
)