UNPKG

@adyen/api-library

Version:

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

28 lines (27 loc) 846 B
import { TransactionRuleReference } from "./transactionRuleReference"; import { TransactionRuleSource } from "./transactionRuleSource"; export declare class TransactionEventViolation { /** * An explanation about why the transaction rule failed. */ "reason"?: string; "transactionRule"?: TransactionRuleReference | null; "transactionRuleSource"?: TransactionRuleSource | null; 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(); }