interface AuditRecord {
    affectedObject: Models.AffectedObject;
    associatedObjects: Models.AffectedObject[];
    author: {
        displayName: string;
        operations: {};
        type: string;
        userKey: string;
        username: string;
    };
    category: string;
    changedValues: Models.ChangedValue[];
    creationDate: number;
    description: string;
    remoteAddress: string;
    summary: string;
    sysAdmin: boolean;
}

Properties

affectedObject: Models.AffectedObject
associatedObjects: Models.AffectedObject[]
author: {
    displayName: string;
    operations: {};
    type: string;
    userKey: string;
    username: string;
}

Type declaration

  • displayName: string
  • operations: {}
    • type: string
    • userKey: string

      Deprecated

      This property has been deprecated and will be removed soon.

    • username: string

      Deprecated

      This property has been deprecated and will be removed soon.

    category: string
    changedValues: Models.ChangedValue[]
    creationDate: number

    The creation date-time of the audit record, as a timestamp.

    description: string
    remoteAddress: string
    summary: string
    sysAdmin: boolean

    Generated using TypeDoc v0.25.12