cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
19 lines (18 loc) • 510 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RemoteConfigurationSource = void 0;
class RemoteConfigurationSource {
id;
name;
type;
assignmentType;
contextKey;
constructor(id, name, type, assignmentType, contextKey) {
this.id = id;
this.name = name;
this.type = type;
this.assignmentType = assignmentType;
this.contextKey = contextKey;
}
}
exports.RemoteConfigurationSource = RemoteConfigurationSource;