# 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.ThreadProjection do @moduledoc """ A thread is a message thread created for a message received by an alias """ @derive [Poison.Encoder] defstruct [ :"aliasId", :"bcc", :"cc", :"createdAt", :"id", :"inboxId", :"name", :"subject", :"to", :"updatedAt", :"userId" ] @type t :: %__MODULE__{ :"aliasId" => String.t, :"bcc" => [String.t] | nil, :"cc" => [String.t] | nil, :"createdAt" => DateTime.t, :"id" => String.t, :"inboxId" => String.t, :"name" => String.t | nil, :"subject" => String.t | nil, :"to" => [String.t], :"updatedAt" => DateTime.t, :"userId" => String.t } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.ThreadProjection do def decode(value, _options) do value end end