Container for a list of audit records.

interface AuditRecords {
    limit?: number;
    offset?: number;
    records?: Version3.Version3Models.AuditRecord[];
    total?: number;
}

Properties

limit?: number

The requested or default limit on the number of audit items to be returned.

offset?: number

The number of audit items skipped before the first item in this list.

The list of audit items.

total?: number

The total number of audit items returned.