@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
8 lines (7 loc) • 403 B
TypeScript
/**
* The scope to which the transfer limit applies. Possible values: * **perTransaction**: you set a maximum amount for each transfer made from the balance account or balance platform. * **perDay**: you set a maximum total amount for all transfers made from the balance account or balance platform in a day.
*/
export declare enum Scope {
PerDay = "perDay",
PerTransaction = "perTransaction"
}