@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
28 lines (27 loc) • 998 B
TypeScript
export declare class PlatformPaymentConfiguration {
/**
* Specifies at what time a sales day ends for this account. Possible values: Time in **\"HH:MM\"** format. **HH** ranges from **00** to **07**. **MM** must be **00**. Default value: **\"00:00\"**.
*/
"salesDayClosingTime"?: string;
/**
* Specifies after how many business days the funds in a settlement batch are made available in this balance account. Possible values: **1** to **20**, or **null**. Default value: **null**.
*/
"settlementDelayDays"?: number;
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();
}