@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
13 lines (12 loc) • 356 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SouthKoreaLocalCard = void 0;
class SouthKoreaLocalCard {
type;
last4;
constructor(southKoreaLocalCard) {
this.type = southKoreaLocalCard.type;
this.last4 = southKoreaLocalCard.last4;
}
}
exports.SouthKoreaLocalCard = SouthKoreaLocalCard;