UNPKG

bungie-net-core

Version:

An easy way to interact with the Bungie.net API

27 lines (26 loc) 1.23 kB
/** * Bungie.Net API * These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality. * * Contact: support@bungie.com * * NOTE: This class is auto generated by the bungie-net-core code generator program * Repository: {@link https://github.com/owens1127/bungie-net-core} * Do not edit these files manually. */ /** * If an item has a related gearset, this is the list of items in that set, and an * unlock expression that evaluates to a number representing the progress toward * gearset completion (a very rare use for unlock expressions!) * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.Definitions.DestinyItemGearsetBlockDefinition} */ export interface DestinyItemGearsetBlockDefinition { /** The maximum possible number of items that can be collected. */ readonly trackingValueMax: number; /** * The list of hashes for items in the gearset. Use them to look up * DestinyInventoryItemDefinition entries for the items in the set. Mapped to * DestinyInventoryItemDefinition in the manifest. */ readonly itemList: number[]; }