Current section

Files

Jump to
mollie_api lib mollie_api model entity_balance_transaction_context_chargeback.ex
Raw

lib/mollie_api/model/entity_balance_transaction_context_chargeback.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.EntityBalanceTransactionContextChargeback do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:paymentId,
:paymentDescription,
:chargebackId,
:chargebackDescription
]
@type t :: %__MODULE__{
:paymentId => String.t | nil,
:paymentDescription => String.t | nil,
:chargebackId => String.t | nil,
:chargebackDescription => String.t | nil
}
def decode(value) do
value
end
end