Current section

Files

Jump to
testcontainers docker_engine_api model graph_driver_data.ex
Raw

docker_engine_api/model/graph_driver_data.ex

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