Details of a custom field option for a context.

interface CustomFieldOptionUpdate {
    disabled?: boolean;
    id: string;
    value?: string;
}

Properties

Properties

disabled?: boolean

Whether the option is disabled.

id: string

The ID of the custom field option.

value?: string

The value of the custom field option.