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/resources/stores.ex
# File generated from our OpenAPI spec
defmodule Stripe.Resources.Stores do
@moduledoc """
payment_intent_next_action_konbini_stores
"""
@typedoc """
* `familymart` - FamilyMart instruction details. Nullable. Expandable.
* `lawson` - Lawson instruction details. Nullable. Expandable.
* `ministop` - Ministop instruction details. Nullable. Expandable.
* `seicomart` - Seicomart instruction details. Nullable. Expandable.
"""
@type t :: %__MODULE__{
familymart: map(),
lawson: map(),
ministop: map(),
seicomart: map()
}
defstruct [:familymart, :lawson, :ministop, :seicomart]
@object_name "payment_intent_next_action_konbini_stores"
def object_name, do: @object_name
def expandable_fields, do: ["familymart", "lawson", "ministop", "seicomart"]
def __inner_types__ do
%{
"familymart" => Stripe.Resources.Familymart,
"lawson" => Stripe.Resources.Lawson,
"ministop" => Stripe.Resources.Ministop,
"seicomart" => Stripe.Resources.Seicomart
}
end
end