/** * @example * { * internal_article_id: 1, * title: "Christmas is here!", * body: "

New gifts in store for the jolly season

" * } * * @example * { * internal_article_id: 1, * title: "Christmas is here!", * body: "

New gifts in store for the jolly season

" * } */ 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; }