lib/open_xchange_client/model/j_slob_data.ex
# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.
defmodule OpenXchangeClient.Model.JSlobData do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:id,
:tree,
:meta
]
@type t :: %__MODULE__{
:id => String.t() | nil,
:tree => map() | nil,
:meta => map() | nil
}
end
defimpl Poison.Decoder, for: OpenXchangeClient.Model.JSlobData do
def decode(value, _options) do
value
end
end