UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

18 lines (17 loc) 794 B
"use strict"; // This file was auto-generated by Fern from our API Definition. Object.defineProperty(exports, "__esModule", { value: true }); exports.CreateArticleRequest = void 0; var CreateArticleRequest; (function (CreateArticleRequest) { /** 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. */ CreateArticleRequest.State = { Published: "published", Draft: "draft", }; /** The type of parent, which can either be a `collection` or `section`. */ CreateArticleRequest.ParentType = { Collection: "collection", Section: "section", }; })(CreateArticleRequest || (exports.CreateArticleRequest = CreateArticleRequest = {}));