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