Type alias QuickBaseResponseAudit

QuickBaseResponseAudit: {
    events?: {
        application: string;
        description: string;
        email: string;
        firstname: string;
        id: string;
        ipaddress: string;
        lastname: string;
        payloadChanges?: {
            changeType: string;
            changes: {
                current: any;
                fields: any;
                previous: any;
            };
            rid: number;
            type: string;
        };
        time: string;
        topic: string;
        useragent: string;
    }[];
    nextToken?: string;
    queryId: string;
}

Type declaration

  • Optional events?: {
        application: string;
        description: string;
        email: string;
        firstname: string;
        id: string;
        ipaddress: string;
        lastname: string;
        payloadChanges?: {
            changeType: string;
            changes: {
                current: any;
                fields: any;
                previous: any;
            };
            rid: number;
            type: string;
        };
        time: string;
        topic: string;
        useragent: string;
    }[]

    All events of the audit log.

  • Optional nextToken?: string

    Token to fetch the next 1000 logs.

  • queryId: string

    Query id of the requested audit log.

Generated using TypeDoc