Current section

Files

Jump to
nomad_client lib nomad_client model csi_topology.ex
Raw

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