parentCategoryHashes property

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

All item category hashes of "parent" categories: categories that contain this as a child through the hierarchy of groupedCategoryHashes. It's a bit redundant, but having this child-centric list speeds up some calculations.

Implementation

@JsonKey(name:'parentCategoryHashes')
List<int>? parentCategoryHashes;