# 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.GroupProjection do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :"createdAt", :"description", :"id", :"name" ] @type t :: %__MODULE__{ :"createdAt" => DateTime.t, :"description" => String.t | nil, :"id" => String.t, :"name" => String.t } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.GroupProjection do def decode(value, _options) do value end end