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 ItemSchema_1 = require("./ItemSchema");
var EmailMessageSchema_1 = require("./EmailMessageSchema");
var ResponseObjectSchema_1 = require("./ResponseObjectSchema");
var ServiceObjectSchema_1 = require("./ServiceObjectSchema");
var CalendarResponseObjectSchema = (function (_super) {
__extends(CalendarResponseObjectSchema, _super);
function CalendarResponseObjectSchema() {
_super.apply(this, arguments);
}
CalendarResponseObjectSchema.prototype.RegisterProperties = function () {
_super.prototype.RegisterProperties.call(this);
_super.prototype.RegisterProperty.call(this, ItemSchema_1.ItemSchema.ItemClass);
_super.prototype.RegisterProperty.call(this, ItemSchema_1.ItemSchema.Sensitivity);
_super.prototype.RegisterProperty.call(this, ItemSchema_1.ItemSchema.Body);
_super.prototype.RegisterProperty.call(this, ItemSchema_1.ItemSchema.Attachments);
_super.prototype.RegisterProperty.call(this, ItemSchema_1.ItemSchema.InternetMessageHeaders);
_super.prototype.RegisterProperty.call(this, EmailMessageSchema_1.EmailMessageSchema.Sender);
_super.prototype.RegisterProperty.call(this, EmailMessageSchema_1.EmailMessageSchema.ToRecipients);
_super.prototype.RegisterProperty.call(this, EmailMessageSchema_1.EmailMessageSchema.CcRecipients);
_super.prototype.RegisterProperty.call(this, EmailMessageSchema_1.EmailMessageSchema.BccRecipients);
_super.prototype.RegisterProperty.call(this, EmailMessageSchema_1.EmailMessageSchema.IsReadReceiptRequested);
_super.prototype.RegisterProperty.call(this, EmailMessageSchema_1.EmailMessageSchema.IsDeliveryReceiptRequested);
_super.prototype.RegisterProperty.call(this, ResponseObjectSchema_1.ResponseObjectSchema.ReferenceItemId);
};
CalendarResponseObjectSchema.Instance = new CalendarResponseObjectSchema();
return CalendarResponseObjectSchema;
})(ServiceObjectSchema_1.ServiceObjectSchema);
exports.CalendarResponseObjectSchema = CalendarResponseObjectSchema;