Parameters for request list.
Summary
Types
@type created() :: %{ optional(:gt) => integer() | nil, optional(:gte) => integer() | nil, optional(:lt) => integer() | nil, optional(:lte) => integer() | nil, optional(String.t()) => term() }
gt- Return results where thecreatedfield is greater than this value.gte- Return results where thecreatedfield is greater than or equal to this value.lt- Return results where thecreatedfield is less than this value.lte- Return results where thecreatedfield is less than or equal to this value.
@type t() :: %Stripe.Params.Forwarding.RequestListParams{ created: created() | 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.