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 ServiceResponse_1 = require("./ServiceResponse");
var GetEventsResponse = (function (_super) {
    __extends(GetEventsResponse, _super);
    function GetEventsResponse() {
        _super.apply(this, arguments);
    }
    GetEventsResponse.prototype.ReadElementsFromJson = function (responseObject, service) { throw new Error("GetEventsResponse.ts - ReadElementsFromJson : Not implemented."); };
    GetEventsResponse.prototype.ReadElementsFromXmlJsObject = function (reader) { throw new Error("GetEventsResponse.ts - ReadElementsFromXmlJsObject : Not implemented."); };
    return GetEventsResponse;
})(ServiceResponse_1.ServiceResponse);
exports.GetEventsResponse = GetEventsResponse;