prorm API Reference
    Preparing search index...

    Interface ConsentVersion

    interface ConsentVersion {
        id: number;
        userId: string;
        consentType: string;
        granted: boolean;
        version: string;
        grantedAt: Date;
        revokedAt: Date | null;
        expiresAt: Date | null;
        metadata: Record<string, any> | null;
        ipAddress: string | null;
        userAgent: string | null;
        createdAt: Date;
        updatedAt: Date;
    }
    Index
    id: number
    userId: string
    consentType: string
    granted: boolean
    version: string
    grantedAt: Date
    revokedAt: Date | null
    expiresAt: Date | null
    metadata: Record<string, any> | null
    ipAddress: string | null
    userAgent: string | null
    createdAt: Date
    updatedAt: Date