@dynatrace/react-native-plugin
Version:
This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.
23 lines (22 loc) • 778 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserPrivacyOptions = void 0;
class UserPrivacyOptions {
constructor(dataCollectionLevel, crashReportingOptedIn) {
this._dataCollectionLevel = dataCollectionLevel;
this._crashReportingOptedIn = crashReportingOptedIn;
}
get dataCollectionLevel() {
return this._dataCollectionLevel;
}
get crashReportingOptedIn() {
return this._crashReportingOptedIn;
}
set crashReportingOptedIn(crashReportingOptedIn) {
this._crashReportingOptedIn = crashReportingOptedIn;
}
set dataCollectionLevel(dataCollectionLevel) {
this._dataCollectionLevel = dataCollectionLevel;
}
}
exports.UserPrivacyOptions = UserPrivacyOptions;