Current section

Files

Jump to
mollie_api lib mollie_api model entity_chargeback_reason.ex
Raw

lib/mollie_api/model/entity_chargeback_reason.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.17.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule MollieAPI.Model.EntityChargebackReason do
@moduledoc """
Reason for the chargeback as given by the bank. Only available for chargebacks of SEPA Direct Debit payments.
"""
@derive JSON.Encoder
defstruct [
:code,
:description
]
@type t :: %__MODULE__{
:code => String.t,
:description => String.t
}
def decode(value) do
value
end
end