Current section
Files
Jump to
Current section
Files
lib/ex_bifrost/model/log_entry_redaction_mapping.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.23.0 (https://openapi-generator.tech)
# using the Elixir SDK Generator template (https://github.com/houllette/elixir-sdk-generator).
# Do not edit this file manually — edit the templates and regenerate instead.
defmodule ExBifrost.Model.LogEntryRedactionMapping do
@moduledoc """
Phase-scoped placeholder-to-original-value mappings for reversible redactions. Present only on log detail responses when the caller has `Logs:Reveal`.
"""
@derive JSON.Encoder
defstruct [
:input,
:output
]
@type t :: %__MODULE__{
:input => %{optional(String.t()) => String.t()} | nil,
:output => %{optional(String.t()) => String.t()} | nil
}
def decode(value) do
value
end
end