@tidecloak/js
Version:
TideCloak client side JS SDK
26 lines • 714 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class VendorSettings {
/**
* @param {boolean} regOn
* @param {boolean} backupOn
* @param {string} imageURL
* @param {string} logoURL
*/
constructor(regOn, backupOn, imageURL, logoURL) {
this.regOn = regOn;
this.backupOn = backupOn;
this.imageURL = imageURL;
this.logoURL = logoURL;
}
toString() {
return JSON.stringify({
RegOn: this.regOn,
BackupOn: this.backupOn,
ImageURL: this.imageURL,
LogoURL: this.logoURL
});
}
}
exports.default = VendorSettings;
//# sourceMappingURL=VendorSettings.js.map