# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). # https://openapi-generator.tech # Do not edit the class manually. defmodule Nomad.Model.JobStabilityResponse do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :JobModifyIndex ] @type t :: %__MODULE__{ :JobModifyIndex => integer() | nil } end defimpl Poison.Decoder, for: Nomad.Model.JobStabilityResponse do def decode(value, _options) do value end end