# 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.SentinelPolicy do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :Name, :Description, :Scope, :EnforcementLevel, :Policy, :CreateIndex, :ModifyIndex ] @type t :: %__MODULE__{ :Name => String.t() | nil, :Description => String.t() | nil, :Scope => String.t() | nil, :EnforcementLevel => String.t() | nil, :Policy => String.t() | nil, :CreateIndex => integer() | nil, :ModifyIndex => integer() | nil } end defimpl Poison.Decoder, for: Nomad.Model.SentinelPolicy do def decode(value, _options) do value end end