Interface AuditListResponse

interface AuditListResponse {
    events: AuditTrailEvent[];
    next_cursor: null | string;
    count: number;
    from: string;
    to: string;
}

Properties

events: AuditTrailEvent[]
next_cursor: null | string
count: number
from: string
to: string