lib/mail_slurp_api/model/count_dto.ex
# 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.CountDto do
  @moduledoc """
  Number of elements
  """
  @derive [Poison.Encoder]
  defstruct [
    :"totalElements"
  ]
  @type t :: %__MODULE__{
    :"totalElements" => integer()
  }
end
defimpl Poison.Decoder, for: MailSlurpAPI.Model.CountDto do
  def decode(value, _options) do
    value
  end
end