Packages

Docker Engine API client for Elixir.

Current section

Files

Jump to
ex_docker_api lib docker_engine_api model event_actor.ex
Raw

lib/docker_engine_api/model/event_actor.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.EventActor do
@moduledoc """
Actor describes something that generates events, like a container, network, or a volume.
"""
@derive Jason.Encoder
defstruct [
:ID,
:Attributes
]
@type t :: %__MODULE__{
:ID => String.t | nil,
:Attributes => %{optional(String.t) => String.t} | nil
}
def decode(value) do
value
end
end