# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). # https://openapi-generator.tech # Do not edit the class manually. defmodule MailSlurpAPI.Model.OrganizationInboxProjection do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :"createdAt", :"emailAddress", :"favourite", :"id", :"name", :"readOnly", :"tags", :"teamAccess" ] @type t :: %__MODULE__{ :"createdAt" => DateTime.t | nil, :"emailAddress" => String.t | nil, :"favourite" => boolean() | nil, :"id" => String.t | nil, :"name" => String.t | nil, :"readOnly" => boolean() | nil, :"tags" => [String.t] | nil, :"teamAccess" => boolean() | nil } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.OrganizationInboxProjection do def decode(value, _options) do value end end