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 AppointmentSchema_1 = require("./AppointmentSchema");
var MeetingMessageSchema_1 = require("./MeetingMessageSchema");
var MeetingCancellationSchema = (function (_super) {
__extends(MeetingCancellationSchema, _super);
function MeetingCancellationSchema() {
_super.apply(this, arguments);
}
MeetingCancellationSchema.prototype.RegisterProperties = function () {
_super.prototype.RegisterProperties.call(this);
_super.prototype.RegisterProperty.call(this, MeetingCancellationSchema.Start);
_super.prototype.RegisterProperty.call(this, MeetingCancellationSchema.End);
_super.prototype.RegisterProperty.call(this, MeetingCancellationSchema.Location);
_super.prototype.RegisterProperty.call(this, MeetingCancellationSchema.Recurrence);
_super.prototype.RegisterProperty.call(this, MeetingCancellationSchema.AppointmentType);
_super.prototype.RegisterProperty.call(this, MeetingCancellationSchema.EnhancedLocation);
};
MeetingCancellationSchema.Start = AppointmentSchema_1.AppointmentSchema.Instance.Start;
MeetingCancellationSchema.End = AppointmentSchema_1.AppointmentSchema.Instance.End;
MeetingCancellationSchema.Location = AppointmentSchema_1.AppointmentSchema.Instance.Location;
MeetingCancellationSchema.AppointmentType = AppointmentSchema_1.AppointmentSchema.Instance.AppointmentType;
MeetingCancellationSchema.Recurrence = AppointmentSchema_1.AppointmentSchema.Instance.Recurrence;
MeetingCancellationSchema.EnhancedLocation = AppointmentSchema_1.AppointmentSchema.Instance.EnhancedLocation;
MeetingCancellationSchema.Instance = new MeetingCancellationSchema();
return MeetingCancellationSchema;
})(MeetingMessageSchema_1.MeetingMessageSchema);
exports.MeetingCancellationSchema = MeetingCancellationSchema;