15 lines
372 B
TypeScript
15 lines
372 B
TypeScript
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;
|
|
};
|
|
};
|
|
}
|