fake-permissions
    Preparing search index...

    Interface AccessRequestRecord

    A snapshot record of an access request handled by the user.

    User.accessRequests to get a snapshot of access requests received by a user.

    interface AccessRequestRecord {
        descriptor: PermissionDescriptor;
        isComplete: boolean;
        result: undefined | AccessDialogResult;
    }
    Index

    Properties

    The descriptor of the permission that was requested.

    isComplete: boolean

    Whether the access request was completed at the time of the snapshot.

    This is false if the access request was still pending, and true if the access request was completed (regardless of whether it was dismissed).

    result: undefined | AccessDialogResult

    The result of the access request, if known at the time of the snapshot.

    This is always undefined if the access request was incomplete, but can also be undefined if the access request was dismissed.