Mayson Monorepo Documentation
    Preparing search index...

    Value lists allow you to group values together which can then be referenced in rules.

    Related guide: Default Stripe lists

    interface ValueList {
        id: string;
        object: "radar.value_list";
        alias: string;
        created: number;
        created_by: string;
        deleted?: void;
        item_type: Stripe.Radar.ValueList.ItemType;
        list_items: ApiList<ValueListItem>;
        livemode: boolean;
        metadata: Metadata;
        name: string;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "radar.value_list"

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

    alias: string

    The name of the value list for use in rules.

    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 created this value list.

    deleted?: void

    Always true for a deleted object

    The type of items in the value list. One of card_fingerprint, card_bin, email, ip_address, country, string, case_sensitive_string, customer_id, sepa_debit_fingerprint, or us_bank_account_fingerprint.

    list_items: ApiList<ValueListItem>

    List of items contained within this value list.

    livemode: boolean

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

    metadata: Metadata

    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

    name: string

    The name of the value list.