Current section

Files

Jump to
mollie_api lib mollie_api model error_response__links.ex
Raw

lib/mollie_api/model/error_response__links.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.ErrorResponseLinks do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:documentation
]
@type t :: %__MODULE__{
:documentation => MollieAPI.Model.ErrorResponseLinksDocumentation.t
}
alias MollieAPI.Deserializer
def decode(value) do
value
|> Deserializer.deserialize(:documentation, :struct, MollieAPI.Model.ErrorResponseLinksDocumentation)
end
end