bungie-net-core
Version:
An easy way to interact with the Bungie.net API
40 lines (39 loc) • 1.33 kB
TypeScript
/**
* 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.
*/
/**
* A hint for how the presentation node should be displayed when shown in a list.
* How you use this is your UI is up to you.
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyPresentationDisplayStyle}
*/
export declare enum DestinyPresentationDisplayStyle {
/** Display the item as a category, through which sub-items are filtered. */
Category = 0,
Badge = 1,
Medals = 2,
Collectible = 3,
Record = 4,
SeasonalTriumph = 5,
GuardianRank = 6,
CategoryCollectibles = 7,
CategoryCurrencies = 8,
CategoryEmblems = 9,
CategoryEmotes = 10,
CategoryEngrams = 11,
CategoryFinishers = 12,
CategoryGhosts = 13,
CategoryMisc = 14,
CategoryMods = 15,
CategoryOrnaments = 16,
CategoryShaders = 17,
CategoryShips = 18,
CategorySpawnfx = 19,
CategoryUpgradeMaterials = 20
}