# `Stripe.Resources.Radar.ValueListItem`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/radar/value_list_item.ex#L2)

RadarListListItem

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](https://docs.stripe.com/radar/lists#managing-list-items)

# `t`

```elixir
@type t() :: %Stripe.Resources.Radar.ValueListItem{
  created: integer(),
  created_by: String.t(),
  id: String.t(),
  livemode: boolean(),
  object: String.t(),
  value: String.t(),
  value_list: String.t()
}
```

* `created` - Time at which the object was created. Measured in seconds since the Unix epoch. Format: Unix timestamp.
* `created_by` - The name or email address of the user who added this item to the value list. Max length: 5000.
* `id` - Unique identifier for the object. Max length: 5000.
* `livemode` - Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `radar.value_list_item`.
* `value` - The value of the item. Max length: 5000.
* `value_list` - The identifier of the value list this item belongs to. Max length: 5000.

# `object_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
