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 resources customer_notification.ex
Raw

lib/stripe/resources/customer_notification.ex

# File generated from our OpenAPI spec
defmodule Stripe.Resources.CustomerNotification do
@moduledoc """
PaymentIntentProcessingCustomerNotification
"""
@typedoc """
* `approval_requested` - Whether customer approval has been requested for this payment. For payments greater than INR 15000 or mandate amount, the customer must provide explicit approval of the payment with their bank. Nullable.
* `completes_at` - If customer approval is required, they need to provide approval before this time. Format: Unix timestamp. Nullable.
"""
@type t :: %__MODULE__{
approval_requested: boolean(),
completes_at: integer()
}
defstruct [:approval_requested, :completes_at]
@object_name "payment_intent_processing_customer_notification"
def object_name, do: @object_name
end