cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
17 lines (16 loc) • 414 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProductInAppDetails = void 0;
/**
* This class contains all the information about the Google in-app product details.
*/
class ProductInAppDetails {
/**
* The price of the in-app product.
*/
price;
constructor(price) {
this.price = price;
}
}
exports.ProductInAppDetails = ProductInAppDetails;