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) [ • 986 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: ContentSource.ContentType;
/** 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;
}
export declare namespace ContentSource {
/**
* The type of the content source.
*/
type ContentType = "file" | "article" | "external_content" | "content_snippet" | "workflow_connector_action";
const ContentType: {
readonly File: "file";
readonly Article: "article";
readonly ExternalContent: "external_content";
readonly ContentSnippet: "content_snippet";
readonly WorkflowConnectorAction: "workflow_connector_action";
};
}