Interface Permissions

interface Permissions {
    actions: ActionPermissions[];
    canCreate: boolean;
    canDelete: boolean;
    canRead: boolean;
    canUpdate: boolean;
    hasLicense: boolean;
    modelName: string;
}

Properties

actions: ActionPermissions[]
canCreate: boolean
canDelete: boolean
canRead: boolean
canUpdate: boolean
hasLicense: boolean
modelName: string