Represents the result of an access permission check for a product.

interface MsAccessPermissionCheckResult {
    IsAllowed: boolean;
    Product: Product;
    Reason: string;
}

Properties

IsAllowed: boolean

Indicates whether the access is allowed for the product.

Product: Product

The product for which the permission is checked.

Reason: string

Provides the reason or explanation for the permission result.