# `Stripe.Services.ReviewService`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/services/review_service.ex#L2)

RadarReview

Reviews can be used to supplement automated fraud detection with human expertise.

Learn more about [Radar](https://stripe.com/radar) and reviewing payments
[here](https://docs.stripe.com/radar/reviews).

# `approve`

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

Approve a review

Approves a `Review` object, closing it and removing it from the list of reviews.

# `list`

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

List all open reviews

Returns a list of `Review` objects that have `open` set to `true`. 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 review

Retrieves a `Review` object.

---

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