nodeCategories property

  1. @JsonKey(name: 'nodeCategories')
List<DestinyTalentNodeCategory>? nodeCategories
getter/setter pair

BNet wants to show talent nodes grouped by similar purpose with localized titles. This is the ordered list of those categories: if you want to show nodes by category, you can iterate over this list, render the displayProperties for the category as the title, and then iterate over the talent nodes referenced by the category to show the related nodes. Note that this is different from Exclusive Groups or Sets, because these categories also incorporate "Independent" nodes that belong to neither sets nor groups. These are purely for visual grouping of nodes rather than functional grouping.

Implementation

@JsonKey(name:'nodeCategories')
List<DestinyTalentNodeCategory>? nodeCategories;