Current section

Files

Jump to
mollie_api lib mollie_api model counterparty.ex
Raw

lib/mollie_api/model/counterparty.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.Counterparty do
@moduledoc """
The counterparty involved in the transaction, including their name and account identifier.
"""
@derive JSON.Encoder
defstruct [
:identifier,
:name
]
@type t :: %__MODULE__{
:identifier => String.t | nil,
:name => String.t | nil
}
def decode(value) do
value
end
end