| 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] |
require 'rankvectors'
instance = RankVectors::ImplementationResult.new(
success: true,
implementation_id: impl-123,
pages_affected: 1,
error: Validation failed
)