intercom-client
Version:
Official Node bindings to the Intercom API
17 lines (16 loc) • 487 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* The content source used by AI Agent in the conversation.
*/
export interface ContentSource {
/** The type of the content source. */
content_type: "custom_answer";
/** The internal URL linking to the content source for teammates. */
url: string;
/** The title of the content source. */
title: string;
/** The ISO 639 language code of the content source. */
locale: string;
}