/** * 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'; /** * This defines a single Step in a progression (which roughly equates to a level. See DestinyProgressionDefinition for caveats). */ export interface DestinyDefinitionsDestinyProgressionStepDefinition { /** * Very rarely, Progressions will have localized text describing the Level of the progression. This will be that localized text, if it exists. Otherwise, the standard appears to be to simply show the level numerically. */ stepName?: string; /** * This appears to be, when you \"level up\", whether a visual effect will display and on what entity. See DestinyProgressionStepDisplayEffect for slightly more info. */ displayEffectType?: number; /** * The total amount of progression points/\"experience\" you will need to initially reach this step. If this is the last step and the progression is repeating indefinitely (DestinyProgressionDefinition.repeatLastStep), this will also be the progress needed to level it up further by repeating this step again. */ progressTotal?: number; /** * A listing of items rewarded as a result of reaching this level. */ rewardItems?: Array; /** * If this progression step has a specific icon related to it, this is the icon to show. */ icon?: string; }