/** * 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 { DestinyDefinitionsDestinyEntitySearchResultItemDisplayProperties } from './destinyDefinitionsDestinyEntitySearchResultItemDisplayProperties'; /** * An individual Destiny Entity returned from the entity search. */ export interface DestinyDefinitionsDestinyEntitySearchResultItem { /** * The hash identifier of the entity. You will use this to look up the DestinyDefinition relevant for the entity found. */ hash?: number; /** * The type of entity, returned as a string matching the DestinyDefinition\'s contract class name. You\'ll have to have your own mapping from class names to actually looking up those definitions in the manifest databases. */ entityType?: string; displayProperties?: DestinyDefinitionsDestinyEntitySearchResultItemDisplayProperties; /** * The ranking value for sorting that we calculated using our relevance formula. This will hopefully get better with time and iteration. */ weight?: number; }