@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) • 384 B
TypeScript
import { type PaymentCardType } from '../../enums/index.js';
import { type IPaymentCardResponse } from '../../types/index.js';
export declare class PaymentCard {
readonly type: PaymentCardType;
readonly last4: string;
readonly expiryMonth: number;
readonly expiryYear: number;
readonly cardholderName: string;
constructor(paymentCard: IPaymentCardResponse);
}