Packages
Complete Stripe SDK for Elixir with parity to the official Ruby SDK. V1+V2 coverage (193 services, 320 resource structs, 525 documented params). Per-event modules, Finch HTTP/2, RustyJSON, automatic retries, OAuth, webhooks, telemetry, per-client config, streaming pagination.
Current section
Files
Jump to
Current section
Files
lib/stripe/params/subscription_search_params.ex
# File generated from our OpenAPI spec
defmodule Stripe.Params.SubscriptionSearchParams do
@moduledoc "Parameters for subscription search."
@typedoc """
* `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.
* `page` - A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. Max length: 5000.
* `query` - The search query string. See [search query language](https://docs.stripe.com/search#search-query-language) and the list of supported [query fields for subscriptions](https://docs.stripe.com/search#query-fields-for-subscriptions). Max length: 5000.
"""
@type t :: %__MODULE__{
expand: [String.t()] | nil,
limit: integer() | nil,
page: String.t() | nil,
query: String.t()
}
defstruct [:expand, :limit, :page, :query]
end