# CustomFieldSelectionOption

Represents the information related to the options of a selection custom field definition.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**availableOptions** | [**Array&lt;CustomFieldAvailableOption&gt;**](CustomFieldAvailableOption.md) | The list of options that that are available for the dependent selection custom field value based on the selected parent custom field value. | [optional] [default to undefined]
**forSelectionKey** | **string** | The key for the parent selection custom field value. | [optional] [default to undefined]
**forValue** | **string** | The parent selection custom field value. | [optional] [default to undefined]

## Example

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

const instance: CustomFieldSelectionOption = {
    availableOptions,
    forSelectionKey,
    forValue,
};
```

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