# SelectionOption

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

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**availableOptions** | [**Array&lt;AvailableOption&gt;**](AvailableOption.md) | The list of options that that are available for the dependent selection custom field value based on the selected parent custom field value. | [default to undefined]
**forSelectionId** | **string** | The ID for the parent selection custom field value. Can only be set if the custom field has the dependent field defined. | [optional] [default to undefined]

## Example

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

const instance: SelectionOption = {
    availableOptions,
    forSelectionId,
};
```

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