import { DestinyEntitiesCharactersDestinyCharacterProgressionComponent } from './destinyEntitiesCharactersDestinyCharacterProgressionComponent'; /** * Character-level progression data, keyed by the Character\'s Id. COMPONENT TYPE: CharacterProgressions */ export interface DestinyResponsesDestinyProfileResponseCharacterProgressions { data?: { [key: string]: DestinyEntitiesCharactersDestinyCharacterProgressionComponent; }; privacy?: number; /** * If true, this component is disabled. */ disabled?: boolean; }