intercom-client
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fintercom%2Fintercom-node) [ • 692 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* @example
* {
* phrase: "Getting started",
* state: "published"
* }
*/
export interface SearchArticlesRequest {
/**
* The phrase within your articles to search for.
*/
phrase?: string;
/**
* The state of the Articles returned. One of `published`, `draft` or `all`.
*/
state?: string;
/**
* The ID of the Help Center to search in.
*/
help_center_id?: number;
/**
* Return a highlighted version of the matching content within your articles. Refer to the response schema for more details.
*/
highlight?: boolean;
}