View Source Stripe.SearchResult (stripity_stripe v3.1.1)

Work with Stripe search result objects.

A search result is a object which holds one or more other Stripe objects in its "data" property. It's similar to Stripe.List

Link to this section Summary

Link to this section Types

@type t(value) :: %Stripe.SearchResult{
  data: [value],
  has_more: boolean(),
  next_page: String.t(),
  object: String.t(),
  total_count: integer() | nil,
  url: String.t()
}
@type value() :: term()