Mayson Monorepo Documentation
    Preparing search index...

    Value list items allow you to add specific values to a given Radar value list, which can then be used in rules.

    Related guide: Managing list items

    interface ValueListItem {
        id: string;
        object: "radar.value_list_item";
        created: number;
        created_by: string;
        deleted?: void;
        livemode: boolean;
        value: string;
        value_list: string;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "radar.value_list_item"

    String representing the object's type. Objects of the same type share the same value.

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    created_by: string

    The name or email address of the user who added this item to the value list.

    deleted?: void

    Always true for a deleted object

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

    value: string

    The value of the item.

    value_list: string

    The identifier of the value list this item belongs to.