nylas
Version:
A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.
11 lines (10 loc) • 403 B
JavaScript
/**
* Enum representing the message fields that can be included in a response.
*/
export 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 || (MessageFields = {}));