Skip to main content

LogEventDetailsKeyTypeEnum

Defines the semantic type and category of a detail within a log entry. Each type determines how the detail should be interpreted and displayed by consumers. Used to categorize contextual information associated with log operations such as updates, errors, removals or additions.

enum LogEventDetailsKeyTypeEnum {
AFTER
BEFORE
INFO
SUBJECT
}

Values

LogEventDetailsKeyTypeEnum.AFTER

Represents the new or updated value/state of a field after a change or update operation. Used in update scenarios to show the result of a change. Typically paired with BEFORE.

LogEventDetailsKeyTypeEnum.BEFORE

Represents the previous or original value/state of a field before a change or update operation. Used in update scenarios to show what changed. Typically paired with AFTER.

LogEventDetailsKeyTypeEnum.INFO

Represents general contextual information or metadata related to the log entry. Used for additional details that don't fit other categories.

LogEventDetailsKeyTypeEnum.SUBJECT

Represents a subject involved in the log entry details

Member Of

LogsEventDetails object