Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EvaluatedRule

import type { EvaluatedRule } from "https://aws-api.deno.dev/v0.4/services/frauddetector.ts?docs=full";

The details of the rule used for evaluating variable values.

interface EvaluatedRule {
evaluated?: boolean | null;
expression?: string | null;
expressionWithValues?: string | null;
matched?: boolean | null;
outcomes?: string[] | null;
ruleId?: string | null;
ruleVersion?: string | null;
}

§Properties

§
evaluated?: boolean | null
[src]

Indicates whether the rule was evaluated.

§
expression?: string | null
[src]

The rule expression.

§
expressionWithValues?: string | null
[src]

The rule expression value.

§
matched?: boolean | null
[src]

Indicates whether the rule matched.

§
outcomes?: string[] | null
[src]

The rule outcome.

§
ruleId?: string | null
[src]

The rule ID.

§
ruleVersion?: string | null
[src]

The rule version.