UNPKG

@adyen/api-library

Version:

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

10 lines (9 loc) 446 B
/** * The status of the transfer limit. Possible values: * **active**: the limit is currently active. * **inactive**: the limit is currently inactive. * **pendingSCA**: the limit is pending until your user performs SCA. * **scheduled**: the limit is scheduled to become active at a future date. */ export declare enum LimitStatus { Active = "active", Inactive = "inactive", PendingSca = "pendingSCA", Scheduled = "scheduled" }