Stripe.Params.V2.Core.EventListParams (tiger_stripe v0.3.0)

Copy Markdown View Source

Parameters for event list.

Summary

Types

created()

@type created() :: %{
  optional(:gt) => String.t() | nil,
  optional(:gte) => String.t() | nil,
  optional(:lt) => String.t() | nil,
  optional(:lte) => String.t() | nil,
  optional(String.t()) => term()
}
  • gt - Filter for events created after the specified timestamp. Format: date-time.
  • gte - Filter for events created at or after the specified timestamp. Format: date-time.
  • lt - Filter for events created before the specified timestamp. Format: date-time.
  • lte - Filter for events created at or before the specified timestamp. Format: date-time.

t()

@type t() :: %Stripe.Params.V2.Core.EventListParams{
  created: created() | nil,
  limit: integer() | nil,
  object_id: String.t() | nil,
  types: [String.t()] | nil
}
  • created - Set of filters to query events within a range of created timestamps.
  • limit - The page size.
  • object_id - Primary object ID used to retrieve related events.
  • types - An array of up to 20 strings containing specific event names.