Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 722 Bytes

File metadata and controls

28 lines (22 loc) · 722 Bytes

RankVectors::ApiKeyResponse

Properties

Name Type Description Notes
id String API key identifier
name String API key name
key String The API key (only returned on creation)
created_at Time Creation timestamp
expires_at Time Expiration timestamp [optional]
is_active Boolean Whether the key is active

Example

require 'rankvectors'

instance = RankVectors::ApiKeyResponse.new(
  id: key-123,
  name: WordPress Plugin,
  key: rvk_1234567890abcdef...,
  created_at: 2025-01-15T10:00Z,
  expires_at: 2025-12-31T23:59:59Z,
  is_active: true
)