feat: field description is added to Title

This commit is contained in:
Iron_Felix 2025-12-05 23:36:05 +03:00
parent 62e0633e69
commit 57956f1f6e
3 changed files with 13 additions and 0 deletions

View file

@ -113,6 +113,9 @@ type Title struct {
// Tags Array of localized tags
Tags Tags `json:"tags"`
// TitleDesc Localized description. Key = language (ISO 639-1), value = description.
TitleDesc *map[string]string `json:"title_desc,omitempty"`
// TitleNames Localized titles. Key = language (ISO 639-1), value = list of names
TitleNames map[string][]string `json:"title_names"`