UNPKG

@adyen/api-library

Version:

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

44 lines (43 loc) 1.19 kB
import { Card } from "./card"; export declare class ScheduleAccountUpdaterRequest { /** * This field contains additional data, which may be required for a particular request. */ "additionalData"?: { [key: string]: string; }; "card"?: Card | null; /** * Account of the merchant. */ "merchantAccount": string; /** * A reference that merchants can apply for the call. */ "reference": string; /** * The selected detail recurring reference. Optional if `card` is provided. */ "selectedRecurringDetailReference"?: string; /** * The reference of the shopper that owns the recurring contract. Optional if `card` is provided. */ "shopperReference"?: 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(); }