intercom-client
Version:
Official Node bindings to the Intercom API
17 lines (16 loc) • 441 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Intercom from "../index";
/**
* This will return a list of articles for the App.
*/
export interface ArticleList {
/** The type of the object - `list`. */
type: "list";
pages?: unknown;
/** A count of the total number of articles. */
total_count: number;
/** An array of Article objects */
data: Intercom.ArticleListItem[];
}