Interface Entry<EntityKey>

Individual Audit entry. This is converted from the raw CSV response lines

interface Entry<EntityKey extends string = string> {
    currentState: Record<string, any>;
    entityId: string;
    entityKey: EntityKey;
    message: Record<string, any>;
    messageKey: string;
    previousState: Record<string, any>;
    principal: Record<string, null | string>;
    when: string;
}

Type Parameters

  • EntityKey extends string = string

Properties

currentState: Record<string, any>
entityId: string
entityKey: EntityKey
message: Record<string, any>
messageKey: string
previousState: Record<string, any>
principal: Record<string, null | string>
when: string