UNPKG

@adyen/api-library

Version:

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

54 lines (53 loc) 1.53 kB
import { ResourceReference } from "./resourceReference"; export declare class BankScoreSignalTriggeredData { "accountHolder"?: ResourceReference | null; /** * The status of the account holder. */ "accountHolderStatus"?: string; /** * The automated action(s) taken as a result of the score signals that were triggered. */ "automatedActions"?: Array<string>; /** * The unique identifier of the balance platform. */ "balancePlatform"?: string; /** * The date and time when the event was triggered, in ISO 8601 extended format. For example, **2025-03-19T10:15:30+01:00**. */ "creationDate"?: Date; /** * The ID of the resource. */ "id"?: string; /** * The score of the identity resulting from the signal(s) that were triggered. */ "riskScore"?: number; /** * The name(s) of the score signals that were triggered. */ "scoreSignalsTriggered"?: Array<string>; /** * The type(s) of the score signals that were triggered. */ "signalSourceTypes"?: Array<string>; 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(); }