Represents a meeting cancellation message.
var CancelMeetingMessage = (function (_super) {
__extends(CancelMeetingMessage, _super);
Option name | Type | Description |
---|---|---|
referenceItem | Item | The reference item. |
Initializes a new instance of the class.
function CancelMeetingMessage(referenceItem) {
_super.call(this, referenceItem);
}
Object.defineProperty(CancelMeetingMessage.prototype, "Body", {
Gets or sets the body of the response.
get: function () {
return this.PropertyBag._getItem(CancelMeetingMessageSchema_1.CancelMeetingMessageSchema.Body);
},
set: function (value) {
this.PropertyBag._setItem(CancelMeetingMessageSchema_1.CancelMeetingMessageSchema.Body, value);
},
enumerable: true,
configurable: true
});
Gets the minimum required server version.
CancelMeetingMessage.prototype.GetMinimumRequiredServerVersion = function () { return ExchangeVersion_1.ExchangeVersion.Exchange2007_SP1; };
Internal method to return the schema associated with this type of object.
CancelMeetingMessage.prototype.GetSchema = function () { return CancelMeetingMessageSchema_1.CancelMeetingMessageSchema.Instance; };
Gets the element name of item in XML
CancelMeetingMessage.prototype.GetXmlElementName = function () { return XmlElementNames_1.XmlElementNames.CancelCalendarItem; };
return CancelMeetingMessage;
})(CalendarResponseMessageBase_1.CalendarResponseMessageBase);
exports.CancelMeetingMessage = CancelMeetingMessage;