interface EvaluatedDecision {
    decisionId: string;
    decisionKey: string;
    decisionName: string;
    decisionOutput: string;
    decisionType: string;
    decisionVersion: number;
    evaluatedInputs: EvaluatedDecisionInput[];
    matchedRules: MatchedDecisionRule[];
    tenantId: string;
}

Properties

decisionId: string

the ID of the decision which was evaluated

decisionKey: string

the unique key identifying the decision which was evaluated (e.g. returned from a decision in the DeployResourceResponse message)

decisionName: string

the name of the decision which was evaluated

decisionOutput: string

JSON document that will instantiate the result of the decision which was evaluated; it will be a JSON object, as the result output will be mapped in a key-value fashion, e.g. { "a": 1 }.

decisionType: string

the type of the decision which was evaluated

decisionVersion: number

the version of the decision which was evaluated

evaluatedInputs: EvaluatedDecisionInput[]

the decision inputs that were evaluated within this decision evaluation

matchedRules: MatchedDecisionRule[]

the decision rules that matched within this decision evaluation

tenantId: string

the tenant identifier of the evaluated decision

Generated using TypeDoc