lib/docspring/model/authentication_success_response.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 Docspring.Model.AuthenticationSuccessResponse do
  @moduledoc """
  
  """

  @derive [Poison.Encoder]
  defstruct [
    :"status"
  ]

  @type t :: %__MODULE__{
    :"status" => String.t
  }
end

defimpl Poison.Decoder, for: Docspring.Model.AuthenticationSuccessResponse do
  def decode(value, _options) do
    value
  end
end