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