/** * 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. */ import { DestinyDestinyItemQuantity } from './destinyDestinyItemQuantity'; import { DestinyDefinitionsMilestonesDestinyMilestoneRewardEntryDefinitionDisplayProperties } from './destinyDefinitionsMilestonesDestinyMilestoneRewardEntryDefinitionDisplayProperties'; /** * The definition of a specific reward, which may be contained in a category of rewards and that has optional information about how it is obtained. */ export interface DestinyDefinitionsMilestonesDestinyMilestoneRewardEntryDefinition { /** * The identifier for this reward entry. Runtime data will refer to reward entries by this hash. Only guaranteed unique within the specific Milestone. */ rewardEntryHash?: number; /** * The string identifier, if you care about it. Only guaranteed unique within the specific Milestone. */ rewardEntryIdentifier?: string; /** * The items you will get as rewards, and how much of it you\'ll get. */ items?: Array; /** * If this reward is redeemed at a Vendor, this is the hash of the Vendor to go to in order to redeem the reward. Use this hash to look up the DestinyVendorDefinition. */ vendorHash?: number; displayProperties?: DestinyDefinitionsMilestonesDestinyMilestoneRewardEntryDefinitionDisplayProperties; /** * If you want to follow BNet\'s ordering of these rewards, use this number within a given category to order the rewards. Yeah, I know. I feel dirty too. */ order?: number; }