/** * 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. */ /** * Indicates the status of an \"Unlock Flag\" on a Character or Profile. These are individual bits of state that can be either set or not set, and sometimes provide interesting human-readable information in their related DestinyUnlockDefinition. */ export interface DestinyDestinyUnlockStatus { /** * The hash identifier for the Unlock Flag. Use to lookup DestinyUnlockDefinition for static data. Not all unlocks have human readable data - in fact, most don\'t. But when they do, it can be very useful to show. Even if they don\'t have human readable data, you might be able to infer the meaning of an unlock flag with a bit of experimentation... */ unlockHash?: number; /** * Whether the unlock flag is set. */ isSet?: boolean; }