File size: 250 Bytes
d714fad
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
export declare class AuditLog {
    id: string;
    tenant_id: string;
    action: string;
    resource_type: string;
    resource_id: string;
    metadata: Record<string, any>;
    ip_address: string;
    user_agent: string;
    created_at: Date;
}