UNPKG

@bipsync/ews-javascript-api

Version:
31 lines (30 loc) 1.29 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); var XmlElementNames_1 = require("../Core/XmlElementNames"); var RetentionTagBase_1 = require("./RetentionTagBase"); /** * Represents the archive tag of an item or folder. */ var ArchiveTag = (function (_super) { __extends(ArchiveTag, _super); function ArchiveTag(isExplicit, retentionId) { if (isExplicit === void 0) { isExplicit = false; } if (retentionId === void 0) { retentionId = null; } var _this = _super.call(this, XmlElementNames_1.XmlElementNames.ArchiveTag) || this; _this.IsExplicit = isExplicit; _this.RetentionId = retentionId; return _this; } return ArchiveTag; }(RetentionTagBase_1.RetentionTagBase)); exports.ArchiveTag = ArchiveTag;