UNPKG

@adyen/api-library

Version:

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

48 lines (47 loc) 1.28 kB
import { MandateBankAccount } from "./mandateBankAccount"; import { MandateStatus } from "./mandateStatus"; import { MandateType } from "./mandateType"; export declare class Mandate { /** * The unique identifier of the balance account linked to the payment instrument. */ "balanceAccountId"?: string; "counterparty"?: MandateBankAccount | null; /** * The date when the mandate was created. */ "createdAt"?: Date; /** * The unique identifier of the mandate. */ "id"?: string; /** * The unique identifier of the payment instrument linked to the mandate. */ "paymentInstrumentId"?: string; "status"?: MandateStatus; "type"?: MandateType; /** * The date when the mandate was updated. */ "updatedAt"?: Date; 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 Mandate { }