cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
19 lines (18 loc) • 485 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserProperty = void 0;
class UserProperty {
key;
value;
/**
* {@link UserPropertyKey} used to set this property.
* Returns {@link UserPropertyKey.CUSTOM} for custom properties.
*/
definedKey;
constructor(key, value, definedKey) {
this.key = key;
this.value = value;
this.definedKey = definedKey;
}
}
exports.UserProperty = UserProperty;