UNPKG

@adyen/api-library

Version:

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

51 lines (50 loc) 1.68 kB
import { Amount } from "./amount"; import { LimitStatus } from "./limitStatus"; import { ScaInformation } from "./scaInformation"; import { Scope } from "./scope"; import { TransferType } from "./transferType"; /** * The transfer limit configured to regulate outgoing transfers. */ export declare class TransferLimit { "amount": Amount; /** * The date and time when the transfer limit becomes inactive. If you do not specify an end date, the limit stays active until you override it with a new limit. Format [ISO 8601](https://www.w3.org/TR/NOTE-datetime): **YYYY-MM-DDThh:mm:ss.sssTZD** */ "endsAt"?: Date; /** * The unique identifier of the transfer limit. */ "id": string; "limitStatus": LimitStatus; /** * Your reference for the transfer limit. */ "reference"?: string; "scaInformation"?: ScaInformation | null; "scope": Scope; /** * The date and time when the transfer limit becomes active. If you specify a date in the future, we will schedule a transfer limit. Format [ISO 8601](https://www.w3.org/TR/NOTE-datetime): **YYYY-MM-DDThh:mm:ss.sssTZD** */ "startsAt": Date; "transferType": TransferType; 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 TransferLimit { }