Current section
Files
Jump to
Current section
Files
lib/docker_engine_api/model/service_update_response.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.23.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DockerEngineAPI.Model.ServiceUpdateResponse do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:Warnings
]
@type t :: %__MODULE__{
:Warnings => [String.t] | nil
}
def decode(value) do
value
end
end