ews javascript api

CancelMeetingMessage

declaration
 CancelMeetingMessage 

Represents a meeting cancellation message.

var CancelMeetingMessage = (function (_super) {
    __extends(CancelMeetingMessage, _super);

CancelMeetingMessage

function
 CancelMeetingMessage() 

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", {

get

method
 get() 

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
    });

GetMinimumRequiredServerVersion

method
 CancelMeetingMessage.prototype.GetMinimumRequiredServerVersion() 

Gets the minimum required server version.

CancelMeetingMessage.prototype.GetMinimumRequiredServerVersion = function () { return ExchangeVersion_1.ExchangeVersion.Exchange2007_SP1; };

GetSchema

method
 CancelMeetingMessage.prototype.GetSchema() 

Internal method to return the schema associated with this type of object.

CancelMeetingMessage.prototype.GetSchema = function () { return CancelMeetingMessageSchema_1.CancelMeetingMessageSchema.Instance; };

GetXmlElementName

method
 CancelMeetingMessage.prototype.GetXmlElementName() 

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;