Current section
Files
Jump to
Current section
Files
lib/docker_engine_api/model/resources_ulimits_inner.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.ResourcesUlimitsInner do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:Name,
:Soft,
:Hard
]
@type t :: %__MODULE__{
:Name => String.t | nil,
:Soft => integer() | nil,
:Hard => integer() | nil
}
def decode(value) do
value
end
end