/** * 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 { DestinyResponsesDestinyErrorProfileInfoCard } from './destinyResponsesDestinyErrorProfileInfoCard'; /** * If a Destiny Profile can\'t be returned, but we\'re pretty certain it\'s a valid Destiny account, this will contain as much info as we can get about the profile for your use. Assume that the most you\'ll get is the Error Code, the Membership Type and the Membership ID. */ export interface DestinyResponsesDestinyErrorProfile { /** * The error that we encountered. You should be able to look up localized text to show to the user for these failures. */ errorCode?: number; infoCard?: DestinyResponsesDestinyErrorProfileInfoCard; }