UNPKG

@adyen/api-library

Version:

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

40 lines (39 loc) 954 B
export declare class TransactionRuleReference { /** * The description of the resource. */ "description"?: string; /** * The unique identifier of the resource. */ "id"?: string; /** * The outcome type of the rule. */ "outcomeType"?: string; /** * The reference for the resource. */ "reference"?: string; /** * The transaction score determined by the rule. Returned only when `outcomeType` is **scoreBased**. */ "score"?: number; 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(); }