@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
15 lines (14 loc) • 749 B
TypeScript
import { type PaymentType } from '../../enums/index.js';
import { PaymentCard } from './payment-card.js';
import { type IPaymentMethodDetails } from '../../types/index.js';
import { PaymentMethodUnderlyingDetails } from './payment-method-underlying-details.js';
import { SouthKoreaLocalCard } from './south-korea-local-card.js';
import { TransactionPayPal } from './transaction-paypal.js';
export declare class PaymentMethodDetails {
readonly type: PaymentType;
readonly card: PaymentCard | null;
readonly paypal: TransactionPayPal | null;
readonly southKoreaLocalCard: SouthKoreaLocalCard | null;
readonly underlyingDetails: PaymentMethodUnderlyingDetails | null;
constructor(paymentMethodDetails: IPaymentMethodDetails);
}