/** * @example * { * phrase: "Getting started", * state: "published", * help_center_id: 1, * highlight: true * } */ 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; }