128 class Item(msgspec.Struct, kw_only=
True):
129 """A single element of the translations / a translation. A translation
130 consists of at least a mandatory ``text`` property (the translation) ,
131 optional properties such as *definitions*, *synonyms* and *examples* are
135 """Translated text."""
137 transliteration: str =
""
138 """Transliteration_ of the requested translation.
140 .. _Transliteration: https://en.wikipedia.org/wiki/Transliteration
143 examples: list[str] = []
144 """List of examples for the requested translation."""
146 definitions: list[str] = []
147 """List of definitions for the requested translation."""
149 synonyms: list[str] = []
150 """List of synonyms for the requested translation."""