zumokit
Version:
ZumoKit is a Wallet as a Service SDK
21 lines (20 loc) • 578 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Card = void 0;
/** Basic card details. */
var Card = /** @class */ (function () {
/** @internal */
function Card(json) {
this.json = json;
this.id = json.id;
this.accountId = json.accountId;
this.cardType = json.cardType;
this.cardStatus = json.cardStatus;
this.limit = json.limit;
this.maskedPan = json.maskedPan;
this.expiry = json.expiry;
this.sca = json.sca;
}
return Card;
}());
exports.Card = Card;