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 ephemeral_key_create_params.ex
Raw

lib/stripe/params/ephemeral_key_create_params.ex

# File generated from our OpenAPI spec
defmodule Stripe.Params.EphemeralKeyCreateParams do
@moduledoc "Parameters for ephemeral key create."
@typedoc """
* `customer` - The ID of the Customer you'd like to modify using the resulting ephemeral key. Max length: 5000.
* `expand` - Specifies which fields in the response should be expanded.
* `issuing_card` - The ID of the Issuing Card you'd like to access using the resulting ephemeral key. Max length: 5000.
* `nonce` - A single-use token, created by Stripe.js, used for creating ephemeral keys for Issuing Cards without exchanging sensitive information. Max length: 5000.
* `verification_session` - The ID of the Identity VerificationSession you'd like to access using the resulting ephemeral key Max length: 5000.
"""
@type t :: %__MODULE__{
customer: String.t() | nil,
expand: [String.t()] | nil,
issuing_card: String.t() | nil,
nonce: String.t() | nil,
verification_session: String.t() | nil
}
defstruct [:customer, :expand, :issuing_card, :nonce, :verification_session]
end