nylas
Version:
A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.
14 lines (13 loc) • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MessageFields = void 0;
/**
* Enum representing the message fields that can be included in a response.
*/
var MessageFields;
(function (MessageFields) {
MessageFields["STANDARD"] = "standard";
MessageFields["INCLUDE_HEADERS"] = "include_headers";
MessageFields["INCLUDE_TRACKING_OPTIONS"] = "include_tracking_options";
MessageFields["RAW_MIME"] = "raw_mime";
})(MessageFields || (exports.MessageFields = MessageFields = {}));