UNPKG

@adyen/api-library

Version:

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

44 lines (43 loc) 1.64 kB
export declare class InternalReviewTrackingData { /** * The reason why the transfer failed Adyen\'s internal review. Possible values: - **refusedForRegulatoryReasons**: the transfer does not comply with Adyen\'s risk policy. For more information, [contact the Support Team](https://www.adyen.help/hc/en-us/requests/new). */ "reason"?: InternalReviewTrackingData.ReasonEnum; /** * The status of the transfer. Possible values: - **pending**: the transfer is under internal review by Adyen. - **failed**: the transfer failed Adyen\'s internal review. For details, see `reason`. */ "status": InternalReviewTrackingData.StatusEnum; /** * The type of tracking event. Possible values: - **internalReview**: the transfer was flagged because it does not comply with Adyen\'s risk policy. */ "type": InternalReviewTrackingData.TypeEnum; 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(); } export declare namespace InternalReviewTrackingData { enum ReasonEnum { RefusedForRegulatoryReasons = "refusedForRegulatoryReasons" } enum StatusEnum { Pending = "pending", Failed = "failed" } enum TypeEnum { InternalReview = "internalReview" } }