# `Stripe.Params.Forwarding.RequestListParams`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/forwarding/request_list_params.ex#L2)

Parameters for request list.

# `t`

```elixir
@type t() :: %Stripe.Params.Forwarding.RequestListParams{
  created: Stripe.Params.Forwarding.RequestListParams.Created.t() | nil,
  ending_before: String.t() | nil,
  expand: [String.t()] | nil,
  limit: integer() | nil,
  starting_after: String.t() | nil
}
```

* `created` - Similar to other List endpoints, filters results based on created timestamp. You can pass gt, gte, lt, and lte timestamp values.
* `ending_before` - A pagination cursor to fetch the previous page of the list. The value must be a ForwardingRequest ID. Max length: 5000.
* `expand` - Specifies which fields in the response should be expanded.
* `limit` - A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
* `starting_after` - A pagination cursor to fetch the next page of the list. The value must be a ForwardingRequest ID. Max length: 5000.

---

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