@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
42 lines (41 loc) • 1.49 kB
TypeScript
import { Amount } from "./amount";
import { CreateScaInformation } from "./createScaInformation";
import { Scope } from "./scope";
import { TransferType } from "./transferType";
export declare class CreateTransferLimitRequest {
"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;
/**
* Your reference for the transfer limit.
*/
"reference"?: string;
"scaInformation"?: CreateScaInformation | 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 CreateTransferLimitRequest {
}