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