Current section
Files
Jump to
Current section
Files
lib/docker_engine_api/model/endpoint_ipam_config.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.EndpointIpamConfig do
@moduledoc """
EndpointIPAMConfig represents an endpoint's IPAM configuration.
"""
@derive JSON.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