intercom-client
Version:
Official Node bindings to the Intercom API
13 lines (12 loc) • 605 B
JavaScript
;
// This file was auto-generated by Fern from our API Definition.
Object.defineProperty(exports, "__esModule", { value: true });
exports.UpdateArticleRequest = void 0;
var UpdateArticleRequest;
(function (UpdateArticleRequest) {
/** Whether the article will be `published` or will be a `draft`. Defaults to draft. For multilingual articles, this will be the state of the default language's content. */
UpdateArticleRequest.State = {
Published: "published",
Draft: "draft",
};
})(UpdateArticleRequest || (exports.UpdateArticleRequest = UpdateArticleRequest = {}));