Current section

Files

Jump to
mollie_api lib mollie_api model entity_client_link_address.ex
Raw

lib/mollie_api/model/entity_client_link_address.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.EntityClientLinkAddress do
@moduledoc """
Address of the organization.
"""
@derive JSON.Encoder
defstruct [
:streetAndNumber,
:postalCode,
:city,
:country
]
@type t :: %__MODULE__{
:streetAndNumber => String.t | nil,
:postalCode => String.t | nil,
:city => String.t | nil,
:country => String.t
}
def decode(value) do
value
end
end