Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 881 Bytes

CrawlStatus.md

File metadata and controls

28 lines (22 loc) · 881 Bytes

SiteimproveAPIClient::CrawlStatus

Properties

Name Type Description Notes
is_crawl_enabled Boolean True if crawling is enabled for this site.
is_crawl_running Boolean True if a crawl in progress.
last_crawl Time Timestamp of when the site was last crawled. [optional]
next_crawl Time Timestamp for next scheduled crawl of the site. [optional]
permission String Permission for requesting crawls of this site. [default to 'allowed']
_links Links1 [optional]

Example

require 'siteimprove_api_client'

instance = SiteimproveAPIClient::CrawlStatus.new(
  is_crawl_enabled: null,
  is_crawl_running: null,
  last_crawl: null,
  next_crawl: null,
  permission: null,
  _links: null
)