NeahNew/node_modules/@keycloak/keycloak-admin-client/lib/defs/evaluationResultRepresentation.d.ts
2025-05-03 15:36:20 +02:00

13 lines
574 B
TypeScript

import type { DecisionEffect } from "./policyRepresentation.js";
import type PolicyResultRepresentation from "./policyResultRepresentation.js";
import type ResourceRepresentation from "./resourceRepresentation.js";
import type ScopeRepresentation from "./scopeRepresentation.js";
export default interface EvaluationResultRepresentation {
resource?: ResourceRepresentation;
scopes?: ScopeRepresentation[];
policies?: PolicyResultRepresentation[];
status?: DecisionEffect;
allowedScopes?: ScopeRepresentation[];
deniedScopes?: ScopeRepresentation[];
}