Details of a custom field option to create.

interface CustomFieldOptionCreate {
    disabled?: boolean;
    optionId?: string;
    value: string;
}

Properties

disabled?: boolean

Whether the option is disabled.

optionId?: string

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

value: string

The value of the custom field option.