# 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.DomainPreview do @moduledoc """ Preview object for domain entity """ @derive [Poison.Encoder] defstruct [ :"catchAllInboxId", :"createdAt", :"domain", :"id" ] @type t :: %__MODULE__{ :"catchAllInboxId" => String.t | nil, :"createdAt" => DateTime.t, :"domain" => String.t, :"id" => String.t } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.DomainPreview do def decode(value, _options) do value end end