Current section

Files

Jump to
nomad_client lib nomad_client model node_memory_resources.ex
Raw

lib/nomad_client/model/node_memory_resources.ex

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