ews javascript api

__extends

declaration
 __extends 

var __extends = this.__extends || function (d, b) {
    for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    __.prototype = b.prototype;
    d.prototype = new __();
};
var XmlElementNames_1 = require("../../XmlElementNames");
var CalendarResponseMessage_1 = require("./CalendarResponseMessage");
var DeclineMeetingInvitationMessage = (function (_super) {
    __extends(DeclineMeetingInvitationMessage, _super);
    function DeclineMeetingInvitationMessage() {
        _super.apply(this, arguments);
    }
    DeclineMeetingInvitationMessage.prototype.GetMinimumRequiredServerVersion = function () { throw new Error("DeclineMeetingInvitationMessage.ts - GetMinimumRequiredServerVersion : Not implemented."); };
    DeclineMeetingInvitationMessage.prototype.GetXmlElementName = function () { return XmlElementNames_1.XmlElementNames.DeclineItem; };
    return DeclineMeetingInvitationMessage;
})(CalendarResponseMessage_1.CalendarResponseMessage);
exports.DeclineMeetingInvitationMessage = DeclineMeetingInvitationMessage;