Current section

Files

Jump to
nomad_client lib nomad model dispatch_payload_config.ex
Raw

lib/nomad/model/dispatch_payload_config.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 Nomad.Model.DispatchPayloadConfig do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:File
]
@type t :: %__MODULE__{
:File => String.t() | nil
}
end
defimpl Poison.Decoder, for: Nomad.Model.DispatchPayloadConfig do
def decode(value, _options) do
value
end
end