Stripe.Params.Forwarding.RequestListParams (tiger_stripe v0.4.0)

Copy Markdown View Source

Parameters for request list.

Summary

Types

t()

@type t() :: %Stripe.Params.Forwarding.RequestListParams{
  created: term(),
  ending_before: term(),
  expand: term(),
  limit: term(),
  starting_after: term()
}
  • 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.