/** * 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 { DestinyDefinitionsCommonDestinyDisplayPropertiesDefinition } from './destinyDefinitionsCommonDestinyDisplayPropertiesDefinition'; export interface DestinyDefinitionsLoadoutsDestinyLoadoutConstantsDefinition { displayProperties?: DestinyDefinitionsCommonDestinyDisplayPropertiesDefinition; /** * This is the same icon as the one in the display properties, offered here as well with a more descriptive name. */ whiteIconImagePath?: string; /** * This is a color-inverted version of the whiteIconImagePath. */ blackIconImagePath?: string; /** * The maximum number of loadouts available to each character. The loadouts component API Response can return fewer loadouts than this, as more loadouts are unlocked by reaching higher Guardian Ranks. */ loadoutCountPerCharacter?: number; /** * A list of the socket category hashes to be filtered out of loadout item preview displays. */ loadoutPreviewFilterOutSocketCategoryHashes?: Array; /** * A list of the socket type hashes to be filtered out of loadout item preview displays. */ loadoutPreviewFilterOutSocketTypeHashes?: Array; /** * A list of the loadout name hashes in index order, for convenience. */ loadoutNameHashes?: Array; /** * A list of the loadout icon hashes in index order, for convenience. */ loadoutIconHashes?: Array; /** * A list of the loadout color hashes in index order, for convenience. */ loadoutColorHashes?: Array; /** * The unique identifier for this entity. Guaranteed to be unique for the type of entity, but not globally. When entities refer to each other in Destiny content, it is this hash that they are referring to. */ hash?: number; /** * The index of the entity as it was found in the investment tables. */ index?: number; /** * If this is true, then there is an entity with this identifier/type combination, but BNet is not yet allowed to show it. Sorry! */ redacted?: boolean; }