defmodule Auth0.Entity.JobsVerificationEmail do @moduledoc """ Documentation for entity of JobsVerificationEmail. """ alias Auth0.Common.Util defstruct status: nil, type: nil, created_at: nil, id: nil @type t :: %__MODULE__{ status: String.t(), type: String.t(), created_at: String.t(), id: String.t() } @spec from(map) :: __MODULE__.t() def from(value) do value |> Util.to_struct(__MODULE__) end end