# 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.JobValidateResponse do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :DriverConfigValidated, :ValidationErrors, :Error, :Warnings ] @type t :: %__MODULE__{ :DriverConfigValidated => boolean() | nil, :ValidationErrors => [String.t()] | nil, :Error => String.t() | nil, :Warnings => String.t() | nil } end defimpl Poison.Decoder, for: Nomad.Model.JobValidateResponse do def decode(value, _options) do value end end