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 ResponseMessageSchema = (function (_super) {
__extends(ResponseMessageSchema, _super);
function ResponseMessageSchema() {
_super.apply(this, arguments);
}
ResponseMessageSchema.prototype.RegisterProperties = function () {
_super.prototype.RegisterProperties.call(this);
_super.prototype.RegisterProperty.call(this, ItemSchema_1.ItemSchema.Subject);
_super.prototype.RegisterProperty.call(this, ItemSchema_1.ItemSchema.Body);
_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);
_super.prototype.RegisterProperty.call(this, ResponseObjectSchema_1.ResponseObjectSchema.BodyPrefix);
};
ResponseMessageSchema.Instance = new ResponseMessageSchema();
return ResponseMessageSchema;
})(ServiceObjectSchema_1.ServiceObjectSchema);
exports.ResponseMessageSchema = ResponseMessageSchema;