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