@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
24 lines (23 loc) • 683 B
TypeScript
import { PaymentMethod } from './paymentMethod';
import { StoredPaymentMethod } from './storedPaymentMethod';
export declare class PaymentMethodsResponse {
/**
* Detailed list of payment methods required to generate payment forms.
*/
'paymentMethods'?: Array<PaymentMethod>;
/**
* List of all stored payment methods.
*/
'storedPaymentMethods'?: Array<StoredPaymentMethod>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}