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
tiger_stripe lib stripe params terminal reader_set_reader_display_params.ex
Raw

lib/stripe/params/terminal/reader_set_reader_display_params.ex

# File generated from our OpenAPI spec
defmodule Stripe.Params.Terminal.ReaderSetReaderDisplayParams do
@moduledoc "Parameters for reader set reader display."
@typedoc """
* `cart` - Cart details to display on the reader screen, including line items, amounts, and currency.
* `expand` - Specifies which fields in the response should be expanded.
* `type` - Type of information to display. Only `cart` is currently supported. Possible values: `cart`.
"""
@type t :: %__MODULE__{}
defstruct [:cart, :expand, :type]
end