intercom-client
Version:
Official Node bindings to the Intercom API
86 lines (85 loc) • 3.53 kB
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Intercom from "../index";
/**
* The Translated Content of an Article. The keys are the locale codes and the values are the translated content of the article.
*/
export interface ArticleTranslatedContent {
/** The type of object - article_translated_content. */
type?: "article_translated_content";
/** The content of the article in Arabic */
ar?: Intercom.ArticleContent;
/** The content of the article in Bulgarian */
bg?: Intercom.ArticleContent;
/** The content of the article in Bosnian */
bs?: Intercom.ArticleContent;
/** The content of the article in Catalan */
ca?: Intercom.ArticleContent;
/** The content of the article in Czech */
cs?: Intercom.ArticleContent;
/** The content of the article in Danish */
da?: Intercom.ArticleContent;
/** The content of the article in German */
de?: Intercom.ArticleContent;
/** The content of the article in Greek */
el?: Intercom.ArticleContent;
/** The content of the article in English */
en?: Intercom.ArticleContent;
/** The content of the article in Spanish */
es?: Intercom.ArticleContent;
/** The content of the article in Estonian */
et?: Intercom.ArticleContent;
/** The content of the article in Finnish */
fi?: Intercom.ArticleContent;
/** The content of the article in French */
fr?: Intercom.ArticleContent;
/** The content of the article in Hebrew */
he?: Intercom.ArticleContent;
/** The content of the article in Croatian */
hr?: Intercom.ArticleContent;
/** The content of the article in Hungarian */
hu?: Intercom.ArticleContent;
/** The content of the article in Indonesian */
id?: Intercom.ArticleContent;
/** The content of the article in Italian */
it?: Intercom.ArticleContent;
/** The content of the article in Japanese */
ja?: Intercom.ArticleContent;
/** The content of the article in Korean */
ko?: Intercom.ArticleContent;
/** The content of the article in Lithuanian */
lt?: Intercom.ArticleContent;
/** The content of the article in Latvian */
lv?: Intercom.ArticleContent;
/** The content of the article in Mongolian */
mn?: Intercom.ArticleContent;
/** The content of the article in Norwegian */
nb?: Intercom.ArticleContent;
/** The content of the article in Dutch */
nl?: Intercom.ArticleContent;
/** The content of the article in Polish */
pl?: Intercom.ArticleContent;
/** The content of the article in Portuguese (Portugal) */
pt?: Intercom.ArticleContent;
/** The content of the article in Romanian */
ro?: Intercom.ArticleContent;
/** The content of the article in Russian */
ru?: Intercom.ArticleContent;
/** The content of the article in Slovenian */
sl?: Intercom.ArticleContent;
/** The content of the article in Serbian */
sr?: Intercom.ArticleContent;
/** The content of the article in Swedish */
sv?: Intercom.ArticleContent;
/** The content of the article in Turkish */
tr?: Intercom.ArticleContent;
/** The content of the article in Vietnamese */
vi?: Intercom.ArticleContent;
/** The content of the article in Portuguese (Brazil) */
"pt-BR"?: Intercom.ArticleContent;
/** The content of the article in Chinese (China) */
"zh-CN"?: Intercom.ArticleContent;
/** The content of the article in Chinese (Taiwan) */
"zh-TW"?: Intercom.ArticleContent;
}