/** * 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 { DestinyComponentsKiosksDestinyKiosksComponent } from './destinyComponentsKiosksDestinyKiosksComponent'; /** * Items available from Kiosks that are available to a specific character as opposed to the account as a whole. It must be combined with data from the profileKiosks property to get a full picture of the character\'s available items to check out of a kiosk. This component returns information about what Kiosk items are available to you on a *Character* level. Usually, kiosk items will be earned for the entire Profile (all characters) at once. To find those, look in the profileKiosks property. COMPONENT TYPE: Kiosks */ export interface DestinyResponsesDestinyProfileResponseCharacterKiosks { data?: { [key: string]: DestinyComponentsKiosksDestinyKiosksComponent; }; privacy?: number; /** * If true, this component is disabled. */ disabled?: boolean; }