# 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.Alias do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :"createdAt", :"emailAddress", :"id", :"inboxId", :"name", :"updatedAt", :"useThreads", :"userId" ] @type t :: %__MODULE__{ :"createdAt" => DateTime.t, :"emailAddress" => String.t, :"id" => String.t | nil, :"inboxId" => String.t, :"name" => String.t | nil, :"updatedAt" => DateTime.t, :"useThreads" => boolean() | nil, :"userId" => String.t } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.Alias do def decode(value, _options) do value end end