cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
19 lines (18 loc) • 526 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SKPaymentDiscount = void 0;
class SKPaymentDiscount {
identifier;
keyIdentifier;
nonce;
signature;
timestamp;
constructor(identifier, keyIdentifier, nonce, signature, timestamp) {
this.identifier = identifier;
this.keyIdentifier = keyIdentifier;
this.nonce = nonce;
this.signature = signature;
this.timestamp = timestamp;
}
}
exports.SKPaymentDiscount = SKPaymentDiscount;