9 lines
151 B
TypeScript
9 lines
151 B
TypeScript
export interface AuditLog {
|
|
accountId?: string;
|
|
type?: string;
|
|
action?: string;
|
|
ipAddress?: string;
|
|
userAgent?: string;
|
|
detail?: string;
|
|
}
|