UNPKG

@paddle/paddle-node-sdk

Version:

A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.

11 lines (10 loc) 512 B
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'; export declare class PaymentMethodDetails { readonly type: PaymentType; readonly card: PaymentCard | null; readonly underlyingDetails: PaymentMethodUnderlyingDetails | null; constructor(paymentMethodDetails: IPaymentMethodDetails); }