Packages

AdyenCheckoutEx is an unofficial API client for Adyen Checkout

Retired package: Deprecated - Easy to build a custom API client instead

Current section

Files

Jump to
adyen_checkout_ex lib adyen_checkout_ex model mobile_pay_details.ex
Raw

lib/adyen_checkout_ex/model/mobile_pay_details.ex

# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.
defmodule AdyenCheckoutEx.Model.MobilePayDetails do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:"type"
]
@type t :: %__MODULE__{
:"type" => String.t | nil
}
end
defimpl Poison.Decoder, for: AdyenCheckoutEx.Model.MobilePayDetails do
def decode(value, _options) do
value
end
end