/** * 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. * * The version of the OpenAPI document: 2.18.0 * Contact: support@bungie.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class 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!) */ export interface DestinyDefinitionsDestinyItemGearsetBlockDefinition { /** * The maximum possible number of items that can be collected. */ trackingValueMax?: number; /** * The list of hashes for items in the gearset. Use them to look up DestinyInventoryItemDefinition entries for the items in the set. */ itemList?: Array; }