Current section
Files
Jump to
Current section
Files
lib/docker_engine_api/model/driver_data.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DockerEngineAPI.Model.DriverData do
@moduledoc """
Information about the storage driver used to store the container's and image's filesystem.
"""
@derive JSON.Encoder
defstruct [
:Name,
:Data
]
@type t :: %__MODULE__{
:Name => String.t,
:Data => %{optional(String.t) => String.t}
}
def decode(value) do
value
end
end