Current section
Files
Jump to
Current section
Files
lib/open_xchange_client/model/folders_visibility_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.FoldersVisibilityData do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:private,
:public,
:shared
]
@type t :: %__MODULE__{
:private => map() | nil,
:public => map() | nil,
:shared => map() | nil
}
end
defimpl Poison.Decoder, for: OpenXchangeClient.Model.FoldersVisibilityData do
def decode(value, _options) do
value
end
end