@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
26 lines (25 loc) • 892 B
TypeScript
import { ApplePayDonations } from "./applePayDonations";
import { CardDonations } from "./cardDonations";
import { GooglePayDonations } from "./googlePayDonations";
import { IdealDonations } from "./idealDonations";
import { PayWithGoogleDonations } from "./payWithGoogleDonations";
/**
* The type and required details of a payment method to use.
*/
/**
* @type DonationPaymentRequestPaymentMethod
* Type
* @export
*/
export type DonationPaymentRequestPaymentMethod = ApplePayDonations | CardDonations | GooglePayDonations | IdealDonations | PayWithGoogleDonations;
/**
* @type DonationPaymentRequestPaymentMethodClass
* The type and required details of a payment method to use.
* @export
*/
export declare class DonationPaymentRequestPaymentMethodClass {
static readonly discriminator: string;
static readonly mapping: {
[index: string]: string;
} | undefined;
}