# CustomFieldAvailableOption

Represents one option of a selection custom field definition.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**score** | **number** | The score of the option. | [optional] [default to undefined]
**selectionKey** | **string** | The system-generated ID of the option. | [optional] [default to undefined]
**value** | **string** | The name of the option. | [optional] [default to undefined]

## Example

```typescript
import { CustomFieldAvailableOption } from './api';

const instance: CustomFieldAvailableOption = {
    score,
    selectionKey,
    value,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
