values property

  1. @JsonKey(name: 'values')
Map<String, DestinyMilestoneValueDefinition>? values
getter/setter pair

Sometimes, milestones will have arbitrary values associated with them that are of interest to us or to third party developers. This is the collection of those values' definitions, keyed by the identifier of the value and providing useful definition information such as localizable names and descriptions for the value.

Implementation

@JsonKey(name:'values')
Map<String, DestinyMilestoneValueDefinition>? values;