Details of the custom field options for a context.

interface CustomFieldContextOption {
    disabled: boolean;
    id: string;
    optionId?: string;
    value: string;
}

Properties

disabled: boolean

Whether the option is disabled.

id: string

The ID of the custom field option.

optionId?: string

For cascading options, the ID of the custom field option containing the cascading option.

value: string

The value of the custom field option.