Skip to main content

LocalizedTemplateContent

Localized template content for specific language support.

Contains template content in a particular language with both raw and optimized versions, enabling multilingual template systems and improved rendering performance through precompilation.

type LocalizedTemplateContent {
language: String!
content: String!
precompiled: String
}

Fields

LocalizedTemplateContent.language ● String! non-null scalar

ISO 639-1 language code for content localization.

Two-character language identifier (e.g., 'en', 'nl', 'de') that determines which language version of the template content to use for message generation.

LocalizedTemplateContent.content ● String! non-null scalar

Handlebars template markup for dynamic content generation.

The raw template content containing Handlebars expressions, HTML markup, or document structure used for rendering personalized messages with dynamic data substitution.

LocalizedTemplateContent.precompiled ● String scalar

Optimized template content for faster rendering.

Pre-processed and compiled version of the Handlebars template that improves rendering performance by eliminating compilation overhead during message generation.

Member Of

DocumentTemplate object ● EmailTemplate object ● IBaseTemplate interface