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