Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 983 Bytes

File metadata and controls

34 lines (28 loc) · 983 Bytes

RankVectors::Page

Properties

Name Type Description Notes
id String Page identifier
project_id String Project identifier
url String Page URL
title String Page title [optional]
word_count Integer Word count [optional]
internal_links Array<Object> Internal links on the page [optional]
external_links Array<Object> External links on the page [optional]
synced_at Time Last sync timestamp [optional]
updated_at Time Last update timestamp [optional]

Example

require 'rankvectors'

instance = RankVectors::Page.new(
  id: page-123,
  project_id: proj-123,
  url: https://example.com/page,
  title: Page Title,
  word_count: 500,
  internal_links: [],
  external_links: [],
  synced_at: 2025-01-15T10:00Z,
  updated_at: 2025-01-15T10:00Z
)