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