@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
32 lines • 1.08 kB
JavaScript
import { __decorate, __metadata } from "tslib";
import { JsonObject, JsonProperty } from 'json2typescript';
/**
* A project's restricted view settings.
*
* @category Model Admin
*/
let ProjectRestrictedViewSettings = class ProjectRestrictedViewSettings {
constructor() {
/**
* The image size used in restricted image view in a project.
*/
this.size = undefined;
/**
* The watermark used in restricted image view in a project.
*/
this.watermark = false;
}
};
__decorate([
JsonProperty('size', String, true),
__metadata("design:type", String)
], ProjectRestrictedViewSettings.prototype, "size", void 0);
__decorate([
JsonProperty('watermark', Boolean, true),
__metadata("design:type", Boolean)
], ProjectRestrictedViewSettings.prototype, "watermark", void 0);
ProjectRestrictedViewSettings = __decorate([
JsonObject('ProjectRestrictedViewSettings')
], ProjectRestrictedViewSettings);
export { ProjectRestrictedViewSettings };
//# sourceMappingURL=project-restricted-view-settings.js.map