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

lib/adyen_checkout_ex/model/zip_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.ZipDetails do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:"clickAndCollect",
:"recurringDetailReference",
:"storedPaymentMethodId",
:"type"
]
@type t :: %__MODULE__{
:"clickAndCollect" => String.t | nil,
:"recurringDetailReference" => String.t | nil,
:"storedPaymentMethodId" => String.t | nil,
:"type" => String.t | nil
}
end
defimpl Poison.Decoder, for: AdyenCheckoutEx.Model.ZipDetails do
def decode(value, _options) do
value
end
end