import type ResourceRepresentation from "./resourceRepresentation.js"; export default interface ResourceEvaluation { roleIds?: string[]; clientId?: string; userId: string; resources?: ResourceRepresentation[]; resourceType?: string; entitlements: boolean; context: { attributes: { [key: string]: string; }; }; }