Current section

Files

Jump to
testcontainers docker_engine_api model endpoint_ipam_config.ex
Raw

docker_engine_api/model/endpoint_ipam_config.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.EndpointIpamConfig do
@moduledoc """
EndpointIPAMConfig represents an endpoint's IPAM configuration.
"""
@derive Jason.Encoder
defstruct [
:IPv4Address,
:IPv6Address,
:LinkLocalIPs
]
@type t :: %__MODULE__{
:IPv4Address => String.t | nil,
:IPv6Address => String.t | nil,
:LinkLocalIPs => [String.t] | nil
}
def decode(value) do
value
end
end