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