Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 640 Bytes

File metadata and controls

24 lines (18 loc) · 640 Bytes

RankVectors::ImplementationResult

Properties

Name Type Description Notes
success Boolean Whether implementation succeeded
implementation_id String Implementation identifier [optional]
pages_affected Integer Number of links/pages modified in this operation [optional]
error String Error message if failed [optional]

Example

require 'rankvectors'

instance = RankVectors::ImplementationResult.new(
  success: true,
  implementation_id: impl-123,
  pages_affected: 1,
  error: Validation failed
)