@shortcut/client
    Preparing search index...

    Interface UpdateCustomFieldEnumValue

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

    Properties

    color_key?: null | 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