@shortcut/client
    Preparing search index...

    Interface UpdateCustomFieldEnumValueParams

    interface UpdateCustomFieldEnumValueParams {
        color_key?:
            | "blue"
            | "purple"
            | "midnight-blue"
            | "orange"
            | "yellow-green"
            | "brass"
            | "gray"
            | "fuchsia"
            | "yellow"
            | "pink"
            | "sky-blue"
            | "green"
            | "red"
            | "black"
            | "slate"
            | "turquoise"
            | null;
        enabled?: boolean;
        id?: string;
        value?: string;
    }
    Index

    Properties

    color_key?:
        | "blue"
        | "purple"
        | "midnight-blue"
        | "orange"
        | "yellow-green"
        | "brass"
        | "gray"
        | "fuchsia"
        | "yellow"
        | "pink"
        | "sky-blue"
        | "green"
        | "red"
        | "black"
        | "slate"
        | "turquoise"
        | null

    The color key for this enum value. Pass null to clear.

    enabled?: boolean

    Whether this enum value is enabled.

    id?: string

    The ID of an existing enum value to update. Omit to create a new value.

    uuid

    value?: string

    The string value for this enum value.

    1

    63