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 Item_1 = require("./Item");
var ContactGroup = (function (_super) {
    __extends(ContactGroup, _super);
    function ContactGroup() {
        _super.apply(this, arguments);
    }
    //////FileAs: string;
    //////DisplayName: string;
    //////Members: GroupMemberCollection;
    //////Bind(service: ExchangeService, id: ItemId, propertySet: PropertySet): ContactGroup { throw new Error("ContactGroup.ts - Bind : Not implemented."); }
    //////Bind(service: ExchangeService, id: ItemId): ContactGroup { throw new Error("ContactGroup.ts - Bind : Not implemented."); }
    //////GetMinimumRequiredServerVersion(): ExchangeVersion { throw new Error("ContactGroup.ts - GetMinimumRequiredServerVersion : Not implemented."); }
    //////GetSchema(): ServiceObjectSchema { throw new Error("ContactGroup.ts - GetSchema : Not implemented."); }
    ContactGroup.prototype.GetXmlElementName = function () { return XmlElementNames_1.XmlElementNames.DistributionList; };
    return ContactGroup;
})(Item_1.Item);
exports.ContactGroup = ContactGroup;