UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

37 lines (36 loc) 1.06 kB
import { NetworkTokenTriggeredRiskRule } from "./networkTokenTriggeredRiskRule"; export declare class NetworkTokenTransactionRulesResult { /** * The advice given by the Risk analysis. */ "advice"?: string; /** * Indicates whether the transaction passed all rules with `outcomeType` **hardBlock**. */ "allHardBlockRulesPassed"?: boolean; /** * The score of the Risk analysis. */ "score"?: number; /** * Contains a list of all triggered transaction rules and the corresponding data. */ "triggeredTransactionRules"?: Array<NetworkTokenTriggeredRiskRule>; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }