# 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.MigrateStrategy do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :MaxParallel, :HealthCheck, :MinHealthyTime, :HealthyDeadline ] @type t :: %__MODULE__{ :MaxParallel => integer() | nil, :HealthCheck => String.t() | nil, :MinHealthyTime => integer() | nil, :HealthyDeadline => integer() | nil } end defimpl Poison.Decoder, for: Nomad.Model.MigrateStrategy do def decode(value, _options) do value end end