Current section

Files

Jump to
nomad_client lib nomad_client model fuzzy_match.ex
Raw

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