@shortcut/client
    Preparing search index...

    Interface CustomFieldEnumValue

    interface CustomFieldEnumValue {
        color_key?: null | string;
        enabled: boolean;
        entity_type: "custom-field-enum-value";
        id: string;
        position: number;
        value: string;
    }
    Index

    Properties

    color_key?: null | string

    A color key associated with this CustomFieldEnumValue.

    enabled: boolean

    When true, the CustomFieldEnumValue can be selected for the CustomField.

    entity_type: "custom-field-enum-value"

    A string description of this resource.

    id: string

    The unique public ID for the Custom Field.

    uuid

    position: number

    An integer indicating the position of this Value with respect to the other CustomFieldEnumValues in the enumeration.

    int64

    value: string

    A string value within the domain of this Custom Field.

    1

    63