intercom-client
Version:
Official Node bindings to the Intercom API
14 lines (13 loc) • 350 B
text/typescript
/**
* You can create an Internal Article
*/
export interface CreateInternalArticleRequest {
/** 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 owner of the article. */
owner_id: number;
}