intercom-client
Version:
Official Node bindings to the Intercom API
86 lines (85 loc) • 3.85 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?: string;
/** The content of the article in Arabic */
ar?: Intercom.unstable.ArticleContent;
/** The content of the article in Bulgarian */
bg?: Intercom.unstable.ArticleContent;
/** The content of the article in Bosnian */
bs?: Intercom.unstable.ArticleContent;
/** The content of the article in Catalan */
ca?: Intercom.unstable.ArticleContent;
/** The content of the article in Czech */
cs?: Intercom.unstable.ArticleContent;
/** The content of the article in Danish */
da?: Intercom.unstable.ArticleContent;
/** The content of the article in German */
de?: Intercom.unstable.ArticleContent;
/** The content of the article in Greek */
el?: Intercom.unstable.ArticleContent;
/** The content of the article in English */
en?: Intercom.unstable.ArticleContent;
/** The content of the article in Spanish */
es?: Intercom.unstable.ArticleContent;
/** The content of the article in Estonian */
et?: Intercom.unstable.ArticleContent;
/** The content of the article in Finnish */
fi?: Intercom.unstable.ArticleContent;
/** The content of the article in French */
fr?: Intercom.unstable.ArticleContent;
/** The content of the article in Hebrew */
he?: Intercom.unstable.ArticleContent;
/** The content of the article in Croatian */
hr?: Intercom.unstable.ArticleContent;
/** The content of the article in Hungarian */
hu?: Intercom.unstable.ArticleContent;
/** The content of the article in Indonesian */
id?: Intercom.unstable.ArticleContent;
/** The content of the article in Italian */
it?: Intercom.unstable.ArticleContent;
/** The content of the article in Japanese */
ja?: Intercom.unstable.ArticleContent;
/** The content of the article in Korean */
ko?: Intercom.unstable.ArticleContent;
/** The content of the article in Lithuanian */
lt?: Intercom.unstable.ArticleContent;
/** The content of the article in Latvian */
lv?: Intercom.unstable.ArticleContent;
/** The content of the article in Mongolian */
mn?: Intercom.unstable.ArticleContent;
/** The content of the article in Norwegian */
nb?: Intercom.unstable.ArticleContent;
/** The content of the article in Dutch */
nl?: Intercom.unstable.ArticleContent;
/** The content of the article in Polish */
pl?: Intercom.unstable.ArticleContent;
/** The content of the article in Portuguese (Portugal) */
pt?: Intercom.unstable.ArticleContent;
/** The content of the article in Romanian */
ro?: Intercom.unstable.ArticleContent;
/** The content of the article in Russian */
ru?: Intercom.unstable.ArticleContent;
/** The content of the article in Slovenian */
sl?: Intercom.unstable.ArticleContent;
/** The content of the article in Serbian */
sr?: Intercom.unstable.ArticleContent;
/** The content of the article in Swedish */
sv?: Intercom.unstable.ArticleContent;
/** The content of the article in Turkish */
tr?: Intercom.unstable.ArticleContent;
/** The content of the article in Vietnamese */
vi?: Intercom.unstable.ArticleContent;
/** The content of the article in Portuguese (Brazil) */
"pt-BR"?: Intercom.unstable.ArticleContent;
/** The content of the article in Chinese (China) */
"zh-CN"?: Intercom.unstable.ArticleContent;
/** The content of the article in Chinese (Taiwan) */
"zh-TW"?: Intercom.unstable.ArticleContent;
}