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