categoryId

var categoryId: Category? = null

Parameters

categoryId

The ID of the category found for this turnover. The structure of this category_id string is hierarchical, meaning, the more numbers there are, the more detailed the category is. For example, while K.1 means \"expenses for wholesale and retail trade\", some turnovers might be categorized more detailed as K.1.1 (\"expenses in retail stores\"), or even as K.1.1.1 (\"groceries full-range trader\"). You can find the complete list of categories here. NOTE: As new categories are introduced and the categorization itself is improved constantly, it is possible that the same turnover can be categorized with a different (more detailed) category_id at a future point in time. You should develop your application in such a way, that, for example, if your logic relies on something happening when a category_id is K.1.1, but you get K.1.2 for which no logic is in place (because it might be a new category_id or the turnover is now categorized more detailed), you should always fall back to the next higher level category, in this case K.1. This way, your logic can still handle the turnover based on a more general category, while not throwing an error.