# ResultsValueFacadeBase Class

> ResultsValueFacadeBase abstract base class for V1 value facades, exposing the common confidence, reference, and validator properties wrapped from a ResultsValue.

## Definition

* Namespace: `UiPath.DocumentProcessing.Contracts.Extensions.Navigator.V1`
* Assembly: `UiPath.DocumentProcessing.Contracts`
* Inherits: [FieldLookupBase](fieldlookupbase-class.md)

## Description

`ResultsValueFacadeBase` is the abstract base class for the value facades [BasicValue](basicvalue-class.md), [TableValue](tablevalue-class.md), and [TableRow](tablerow-class.md).

It wraps a single [ResultsValue](results-value-class.md) and exposes its confidence, content reference, derived fields, and validator information as strongly-typed properties. Because it inherits from [FieldLookupBase](fieldlookupbase-class.md), derived facades can resolve nested component fields by lookup. It is not instantiated directly.

## Members

### Constructors

| Constructor | Description |
|---|---|
| `ResultsValueFacadeBase(ResultsValue value)` | Initializes a new instance wrapping the specified value. The value components are used as the field collection for lookups. |

### Properties

| Property | Type | Description |
|---|---|---|
| `Confidence` | `float` | The confidence score of the value. Read/write. |
| `OcrConfidence` | `float` | The Optical Character Recognition (OCR) confidence score of the value. Read/write. |
| `OperatorConfirmed` | `bool` | Whether the value was confirmed by an operator. Read/write. |
| `Reference` | `ResultsContentReference` | The content reference of the value. Read/write. |
| `DerivedFields` | `ResultsDerivedField[]` | The derived fields of the value. Read/write. |
| `ValidatorNotes` | `string` | The validator notes for the value. Read/write. |
| `ValidatorNotesInfo` | `string` | Additional validator information for the value. Read/write. |

### Methods

| Method | Returns | Description |
|---|---|---|
| `GetRawResultsValue()` | `ResultsValue` | Returns the underlying [ResultsValue](results-value-class.md) wrapped by the facade. |
