Current section
Files
Jump to
Current section
Files
lib/docker_engine_api/model/exec_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.ExecConfig do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:AttachStdin,
:AttachStdout,
:AttachStderr,
:ConsoleSize,
:DetachKeys,
:Tty,
:Env,
:Cmd,
:Privileged,
:User,
:WorkingDir
]
@type t :: %__MODULE__{
:AttachStdin => boolean() | nil,
:AttachStdout => boolean() | nil,
:AttachStderr => boolean() | nil,
:ConsoleSize => [integer()] | nil,
:DetachKeys => String.t | nil,
:Tty => boolean() | nil,
:Env => [String.t] | nil,
:Cmd => [String.t] | nil,
:Privileged => boolean() | nil,
:User => String.t | nil,
:WorkingDir => String.t | nil
}
def decode(value) do
value
end
end