# 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.SentEmailProjection do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :"attachments", :"bcc", :"bodyMD5Hash", :"cc", :"createdAt", :"from", :"id", :"inboxId", :"subject", :"to", :"userId" ] @type t :: %__MODULE__{ :"attachments" => [String.t], :"bcc" => [String.t], :"bodyMD5Hash" => String.t | nil, :"cc" => [String.t], :"createdAt" => DateTime.t, :"from" => String.t | nil, :"id" => String.t, :"inboxId" => String.t, :"subject" => String.t | nil, :"to" => [String.t], :"userId" => String.t } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.SentEmailProjection do def decode(value, _options) do value end end