@shortcut/client
    Preparing search index...

    Interface CustomFieldValue

    interface CustomFieldValue {
        color_key?:
            | "blue"
            | "purple"
            | "midnight-blue"
            | "orange"
            | "yellow-green"
            | "brass"
            | "gray"
            | "fuchsia"
            | "yellow"
            | "pink"
            | "sky-blue"
            | "green"
            | "red"
            | "black"
            | "slate"
            | "turquoise"
            | null;
        enabled?: boolean;
        entity_type?: "custom-field-value";
        field?: CustomFieldSlim;
        id?: string;
        position?: number;
        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 associated with this enum value.

    enabled?: boolean

    Whether this enum value is enabled.

    entity_type?: "custom-field-value"

    The type of this entity.

    The Custom Field for this value.

    id?: string

    The unique public ID for the enum value.

    uuid

    position?: number

    The position of this enum value in the ordered list.

    int64

    value?: string

    The string value for this enum value.

    63