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 ResponseObjectSchema_1 = require("./ResponseObjectSchema");
var ServiceObjectSchema_1 = require("./ServiceObjectSchema");
var PostReplySchema = (function (_super) {
__extends(PostReplySchema, _super);
function PostReplySchema() {
_super.apply(this, arguments);
}
PostReplySchema.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, ResponseObjectSchema_1.ResponseObjectSchema.ReferenceItemId);
_super.prototype.RegisterProperty.call(this, ResponseObjectSchema_1.ResponseObjectSchema.BodyPrefix);
};
PostReplySchema.Instance = new PostReplySchema();
return PostReplySchema;
})(ServiceObjectSchema_1.ServiceObjectSchema);
exports.PostReplySchema = PostReplySchema;