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