/* tslint:disable */ /* eslint-disable */ /** * customfields * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { CustomFieldAvailableOption } from './custom-field-available-option'; /** * Represents the information related to the options of a selection custom field definition. */ export interface CustomFieldSelectionOption { /** * The list of options that that are available for the dependent selection custom field value based on the selected parent custom field value. */ availableOptions?: Array; /** * The key for the parent selection custom field value. */ forSelectionKey?: string; /** * The parent selection custom field value. */ forValue?: string; }