/** * 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. * * The version of the OpenAPI document: 2.18.0 * Contact: support@bungie.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { DestinyEntitiesCharactersDestinyCharacterRenderComponentCustomization } from './destinyEntitiesCharactersDestinyCharacterRenderComponentCustomization'; import { DestinyDyeReference } from './destinyDyeReference'; import { DestinyEntitiesCharactersDestinyCharacterRenderComponentPeerView } from './destinyEntitiesCharactersDestinyCharacterRenderComponentPeerView'; /** * Only really useful if you\'re attempting to render the character\'s current appearance in 3D, this returns a bare minimum of information, pre-aggregated, that you\'ll need to perform that rendering. Note that you need to combine this with other 3D assets and data from our servers. Examine the Javascript returned by https://bungie.net/sharedbundle/spasm to see how we use this data, but be warned: the rabbit hole goes pretty deep. */ export interface DestinyEntitiesCharactersDestinyCharacterRenderComponent { /** * Custom dyes, calculated by iterating over the character\'s equipped items. Useful for pre-fetching all of the dye data needed from our server. */ customDyes?: Array; customization?: DestinyEntitiesCharactersDestinyCharacterRenderComponentCustomization; peerView?: DestinyEntitiesCharactersDestinyCharacterRenderComponentPeerView; }