intercom-client
Version:
Official Node bindings to the Intercom API
28 lines (27 loc) • 784 B
text/typescript
/**
* @example
* {
* internal_article_id: 1,
* title: "Christmas is here!",
* body: "<p>New gifts in store for the jolly season</p>"
* }
*
* @example
* {
* internal_article_id: 1,
* title: "Christmas is here!",
* body: "<p>New gifts in store for the jolly season</p>"
* }
*/
export interface UpdateInternalArticleRequestBody {
/** The unique identifier for the internal article which is given by Intercom. */
internal_article_id: number;
/** The title of the article. */
title?: string;
/** The content of the article. */
body?: string;
/** The id of the author of the article. */
author_id?: number;
/** The id of the author of the article. */
owner_id?: number;
}