lib/docker_engine_api/model/engine_description_plugins.ex
# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule DockerEngineAPI.Model.EngineDescriptionPlugins do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:Type,
:Name
]
@type t :: %__MODULE__{
:Type => String.t(),
:Name => String.t()
}
end
defimpl Poison.Decoder, for: DockerEngineAPI.Model.EngineDescriptionPlugins do
def decode(value, _options) do
value
end
end