Current section

Files

Jump to
nomad_client lib nomad_client model host_volume_info.ex
Raw

lib/nomad_client/model/host_volume_info.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.HostVolumeInfo do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:Path,
:ReadOnly
]
@type t :: %__MODULE__{
:Path => String.t() | nil,
:ReadOnly => boolean() | nil
}
end
defimpl Poison.Decoder, for: NomadClient.Model.HostVolumeInfo do
def decode(value, _options) do
value
end
end