@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
33 lines (32 loc) • 1.06 kB
TypeScript
import { StoredPaymentMethodResource } from "./storedPaymentMethodResource";
export declare class ListStoredPaymentMethodsResponse {
/**
* Your merchant account.
*/
"merchantAccount"?: string;
/**
* Your reference to uniquely identify this shopper, for example user ID or account ID. Minimum length: 3 characters. > Your reference must not include personally identifiable information (PII), for example name or email address.
*/
"shopperReference"?: string;
/**
* List of all stored payment methods.
*/
"storedPaymentMethods"?: Array<StoredPaymentMethodResource>;
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();
}