Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 621 Bytes

File metadata and controls

26 lines (20 loc) · 621 Bytes

RankVectors::PageData

Properties

Name Type Description Notes
url String Page URL
title String Page title [optional]
content String Page content [optional]
word_count Integer Word count [optional]
description String Page description/meta [optional]

Example

require 'rankvectors'

instance = RankVectors::PageData.new(
  url: https://example.com/page,
  title: Page Title,
  content: Page content here...,
  word_count: 500,
  description: Page description
)