pub struct TextModuleData {
pub body: Option<String>,
pub header: Option<String>,
pub id: Option<String>,
pub localized_body: Option<LocalizedString>,
pub localized_header: Option<LocalizedString>,
}Expand description
Data for Text module. All fields are optional. Header will be displayed if available, different types of bodies will be concatenated if they are defined.
This type is not used in any activity, and only used as part of another schema.
Fields§
§body: Option<String>The body of the Text Module, which is defined as an uninterrupted string. Recommended maximum length is 500 characters to ensure full string is displayed on smaller screens.
header: Option<String>The header of the Text Module. Recommended maximum length is 35 characters to ensure full string is displayed on smaller screens.
id: Option<String>The ID associated with a text module. This field is here to enable ease of management of text modules and referencing them in template overrides. The ID should only include alphanumeric characters, ‘_’, or ‘-’. It can not include dots, as dots are used to separate fields within FieldReference.fieldPaths in template overrides.
localized_body: Option<LocalizedString>Translated strings for the body. Recommended maximum length is 500 characters to ensure full string is displayed on smaller screens.
localized_header: Option<LocalizedString>Translated strings for the header. Recommended maximum length is 35 characters to ensure full string is displayed on smaller screens.
Trait Implementations§
Source§impl Clone for TextModuleData
impl Clone for TextModuleData
Source§fn clone(&self) -> TextModuleData
fn clone(&self) -> TextModuleData
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more