@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 1.04 kB
TypeScript
export declare class DirectDebitInformation {
/**
* The date when the direct debit mandate was accepted by your user, in [ISO-8601](https://www.w3.org/TR/NOTE-datetime) format.
*/
"dateOfSignature"?: Date;
/**
* The date when the funds are deducted from your user\'s balance account.
*/
"dueDate"?: Date;
/**
* Your unique identifier for the direct debit mandate.
*/
"mandateId"?: string;
/**
* Identifies the direct debit transfer\'s type. Possible values: **OneOff**, **First**, **Recurring**, **Final**.
*/
"sequenceType"?: string;
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();
}