Interface UpdateCustomFieldEnumValue

interface UpdateCustomFieldEnumValue {
    color_key?: string;
    enabled?: boolean;
    id?: string;
    value?: string;
}

Properties

color_key?: string

A color key associated with this EnumValue within the CustomField's domain.

enabled?: boolean

Whether this EnumValue is enabled for its CustomField or not. Leaving this key out of the request leaves the current enabled state untouched.

id?: string

The unique ID of an existing EnumValue within the CustomField's domain.

uuid

value?: string

A string value within the domain of this Custom Field.

1

63