/** * Bungie.Net API * These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality. * * OpenAPI spec version: 2.18.0 * Contact: support@bungie.com * * OODestiny Version: 2.0.9 * NOTE: This class is auto generated by the oodestiny code generator program * Repository: {@link https://github.com/owensimpson/oodestiny} * Adapted from {@link https://github.com/DestinyItemManager/bungie-api-ts} * Do not edit these files manually. */ import { ComponentData } from '../../../generic/ComponentTypes'; import { DestinyComponentType } from '../DestinyComponentType'; import { SingleComponentResponse } from '../../../generic/SingleComponentResponse'; import { ConditionalComponent } from '../../../generic/ComponentTypes'; import { DestinyInventoryComponent } from '../Entities/Inventory/DestinyInventoryComponent'; import { DestinyCharacterComponent } from '../Entities/Characters/DestinyCharacterComponent'; import { DestinyCharacterProgressionComponent } from '../Entities/Characters/DestinyCharacterProgressionComponent'; import { DestinyCharacterRenderComponent } from '../Entities/Characters/DestinyCharacterRenderComponent'; import { DestinyCharacterActivitiesComponent } from '../Entities/Characters/DestinyCharacterActivitiesComponent'; import { DestinyLoadoutsComponent } from '../Components/Loadouts/DestinyLoadoutsComponent'; import { DestinyKiosksComponent } from '../Components/Kiosks/DestinyKiosksComponent'; import { DestinyPlugSetsComponent } from '../Components/PlugSets/DestinyPlugSetsComponent'; import { DestinyPresentationNodesComponent } from '../Components/Presentation/DestinyPresentationNodesComponent'; import { DestinyCharacterRecordsComponent } from '../Components/Records/DestinyCharacterRecordsComponent'; import { DestinyCollectiblesComponent } from '../Components/Collectibles/DestinyCollectiblesComponent'; import { DestinyItemComponentSetOfint64 } from '../../DestinyItemComponentSetOfint64'; import { DestinyBaseItemComponentSetOfuint32 } from '../../DestinyBaseItemComponentSetOfuint32'; import { DestinyCurrenciesComponent } from '../Components/Inventory/DestinyCurrenciesComponent'; /** * The response contract for GetDestinyCharacter, with components that can be * returned for character and item-level data. * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.Responses.DestinyCharacterResponse} */ export interface DestinyCharacterResponse extends ComponentData { /** * The character-level non-equipped inventory items. * * COMPONENT TYPE: CharacterInventories */ readonly inventory: ConditionalComponent>; /** * Base information about the character in question. * * COMPONENT TYPE: Characters */ readonly character: ConditionalComponent>; /** * Character progression data, including Milestones. * * COMPONENT TYPE: CharacterProgressions */ readonly progressions: ConditionalComponent>; /** * Character rendering data - a minimal set of information about equipment and dyes * used for rendering. * * COMPONENT TYPE: CharacterRenderData */ readonly renderData: ConditionalComponent>; /** * Activity data - info about current activities available to the player. * * COMPONENT TYPE: CharacterActivities */ readonly activities: ConditionalComponent>; /** * Equipped items on the character. * * COMPONENT TYPE: CharacterEquipment */ readonly equipment: ConditionalComponent>; /** * The loadouts available to the character. * * COMPONENT TYPE: CharacterLoadouts */ readonly loadouts: ConditionalComponent>; /** * Items available from Kiosks that are available to this specific character. * * COMPONENT TYPE: Kiosks */ readonly kiosks: ConditionalComponent>; /** * When sockets refer to reusable Plug Sets (see DestinyPlugSetDefinition for more * info), this is the set of plugs and their states that are scoped to this * character. * * This comes back with ItemSockets, as it is needed for a complete picture of the * sockets on requested items. * * COMPONENT TYPE: ItemSockets */ readonly plugSets: ConditionalComponent>; /** COMPONENT TYPE: PresentationNodes */ readonly presentationNodes: ConditionalComponent>; /** COMPONENT TYPE: Records */ readonly records: ConditionalComponent>; /** COMPONENT TYPE: Collectibles */ readonly collectibles: ConditionalComponent>; /** * The set of components belonging to the player's instanced items. * * COMPONENT TYPE: [See inside the DestinyItemComponentSet contract for component * types.] */ readonly itemComponents: DestinyItemComponentSetOfint64; /** * The set of components belonging to the player's UNinstanced items. Because * apparently now those too can have information relevant to the character's state. * * COMPONENT TYPE: [See inside the DestinyItemComponentSet contract for component * types.] */ readonly uninstancedItemComponents: DestinyBaseItemComponentSetOfuint32; /** * A "lookup" convenience component that can be used to quickly check if the * character has access to items that can be used for purchasing. * * COMPONENT TYPE: CurrencyLookups */ readonly currencyLookups: ConditionalComponent>; }