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