# 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.JsonSchemaDto do @moduledoc """ JSONSchema for payload """ @derive [Poison.Encoder] defstruct [ :"value" ] @type t :: %__MODULE__{ :"value" => String.t } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.JsonSchemaDto do def decode(value, _options) do value end end