Current section

Files

Jump to
mollie_api lib mollie_api model entity_unmatched_credit_transfer_source.ex
Raw

lib/mollie_api/model/entity_unmatched_credit_transfer_source.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.EntityUnmatchedCreditTransferSource do
@moduledoc """
Details about the sender of the credit transfer.
"""
@derive JSON.Encoder
defstruct [
:format,
:accountHolderName,
:iban,
:bic
]
@type t :: %__MODULE__{
:format => String.t,
:accountHolderName => String.t,
:iban => String.t,
:bic => String.t
}
def decode(value) do
value
end
end