# 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.HealthcheckResult do @moduledoc """ HealthcheckResult stores information about a single run of a healthcheck probe """ @derive JSON.Encoder defstruct [ :Start, :End, :ExitCode, :Output ] @type t :: %__MODULE__{ :Start => DateTime.t | nil, :End => String.t | nil, :ExitCode => integer() | nil, :Output => String.t | nil } def decode(value) do value end end