Interface AuditLogInternal

An Audit Log struct

interface AuditLog {
    attributes: {
        action: string;
        created_at: string;
        device: undefined | Device;
        metadata: any;
        subaction: string;
    };
    object: "audit_log";
}

Properties

Properties

attributes: {
    action: string;
    created_at: string;
    device: undefined | Device;
    metadata: any;
    subaction: string;
}

Type declaration

  • action: string
  • created_at: string
  • device: undefined | Device
  • metadata: any
  • subaction: string
object: "audit_log"

Generated using TypeDoc