keycloak-scim/js/libs/keycloak-admin-client/src/defs/policyEvaluationResponse.ts
Jon Koops 8cb202eb29
Add JavaScript admin client to repository (#16697)
* Add JavaScript admin client to repository

* Apply review feedback

Co-authored-by: Stian Thorgersen <stian@redhat.com>

---------

Co-authored-by: Stian Thorgersen <stian@redhat.com>
2023-02-03 10:45:11 +00:00

10 lines
418 B
TypeScript

import type AccessTokenRepresentation from "./accessTokenRepresentation.js";
import type EvaluationResultRepresentation from "./evaluationResultRepresentation.js";
import type { DecisionEffect } from "./policyRepresentation.js";
export default interface PolicyEvaluationResponse {
results?: EvaluationResultRepresentation[];
entitlements?: boolean;
status?: DecisionEffect;
rpt?: AccessTokenRepresentation;
}