itemList property

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

If the vendor sells items (or merely has a list of items to show like the "Sack" vendors do), this is the list of those items that the vendor can sell. From this list, only a subset will be available from the vendor at any given time, selected randomly and reset on the vendor's refresh interval. Note that a vendor can sell the same item multiple ways: for instance, nothing stops a vendor from selling you some specific weapon but using two different currencies, or the same weapon at multiple "item levels".

Implementation

@JsonKey(name:'itemList')
List<DestinyVendorItemDefinition>? itemList;