import { DestinyEntitiesInventoryDestinyInventoryComponent } from './destinyEntitiesInventoryDestinyInventoryComponent'; /** * The character\'s equipped items, keyed by the Character\'s Id. COMPONENT TYPE: CharacterEquipment */ export interface DestinyResponsesDestinyProfileResponseCharacterEquipment { data?: { [key: string]: DestinyEntitiesInventoryDestinyInventoryComponent; }; privacy?: number; /** * If true, this component is disabled. */ disabled?: boolean; }