import { DestinyEntitiesCharactersDestinyCharacterComponent } from './destinyEntitiesCharactersDestinyCharacterComponent'; /** * Basic information about each character, keyed by the CharacterId. COMPONENT TYPE: Characters */ export interface DestinyResponsesDestinyProfileResponseCharacters { data?: { [key: string]: DestinyEntitiesCharactersDestinyCharacterComponent; }; privacy?: number; /** * If true, this component is disabled. */ disabled?: boolean; }