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/promptpay_display_qr_code.ex
# File generated from our OpenAPI spec
defmodule Stripe.Resources.PromptpayDisplayQrCode do
@moduledoc """
PaymentIntentNextActionPromptpayDisplayQrCode
"""
@typedoc """
* `data` - The raw data string used to generate QR code, it should be used together with QR code library. Max length: 5000.
* `hosted_instructions_url` - The URL to the hosted PromptPay instructions page, which allows customers to view the PromptPay QR code. Max length: 5000.
* `image_url_png` - The PNG path used to render the QR code, can be used as the source in an HTML img tag Max length: 5000.
* `image_url_svg` - The SVG path used to render the QR code, can be used as the source in an HTML img tag Max length: 5000.
"""
@type t :: %__MODULE__{}
defstruct [:data, :hosted_instructions_url, :image_url_png, :image_url_svg]
@object_name "payment_intent_next_action_promptpay_display_qr_code"
def object_name, do: @object_name
end