# `Stripe.Services.Radar.ValueListItemService`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/services/radar/value_list_item_service.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)

# `create`

```elixir
@spec create(Stripe.Client.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Create a value list item

Creates a new `ValueListItem` object, which is added to the specified parent value list.

# `delete`

```elixir
@spec delete(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Delete a value list item

Deletes a `ValueListItem` object, removing it from its parent value list.

# `list`

```elixir
@spec list(Stripe.Client.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

List all value list items

Returns a list of `ValueListItem` objects. The objects are sorted in descending order by creation date, with the most recently created object appearing first.

# `retrieve`

```elixir
@spec retrieve(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Retrieve a value list item

Retrieves a `ValueListItem` object.

---

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