[Go to site: main page, start]

ADK for TypeScript: API Reference
    Preparing search index...

    Interface PolicyCheckResult

    The result returned by a policy engine after evaluating a tool call.

    interface PolicyCheckResult {
        outcome: string;
        reason?: string;
    }

    Properties

    outcome: string

    The policy decision: ALLOW, DENY, or CONFIRM.

    reason?: string

    Optional human-readable explanation of the decision.