uninstancedItemObjectives property
- @JsonKey(name: 'uninstancedItemObjectives')
getter/setter pair
Sometimes, you have items in your inventory that don't have instances, but still have Objective information. This provides you that objective information for uninstanced items. This dictionary is keyed by the item's hash: which you can use to look up the name and description for the overall task(s) implied by the objective. The value is the list of objectives for this item, and their statuses.
Implementation
@JsonKey(name:'uninstancedItemObjectives')
Map<String, List<DestinyObjectiveProgress>>? uninstancedItemObjectives;