import { DestinyComponentsPlugSetsDestinyPlugSetsComponent } from './destinyComponentsPlugSetsDestinyPlugSetsComponent'; /** * When sockets refer to reusable Plug Sets (see DestinyPlugSetDefinition for more info), this is the set of plugs and their states, per character, that are character-scoped. This comes back with ItemSockets, as it is needed for a complete picture of the sockets on requested items. COMPONENT TYPE: ItemSockets */ export interface DestinyResponsesDestinyProfileResponseCharacterPlugSets { data?: { [key: string]: DestinyComponentsPlugSetsDestinyPlugSetsComponent; }; privacy?: number; /** * If true, this component is disabled. */ disabled?: boolean; }