UNPKG

bungie-net-core

Version:

An easy way to interact with the Bungie.net API

36 lines (35 loc) 1.85 kB
/** * 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. * * Contact: support@bungie.com * * NOTE: This class is auto generated by the bungie-net-core code generator program * Repository: {@link https://github.com/owens1127/bungie-net-core} * Do not edit these files manually. */ import { DestinyHistoricalStatsActivity } from './DestinyHistoricalStatsActivity'; import { DestinyPostGameCarnageReportEntry } from './DestinyPostGameCarnageReportEntry'; import { DestinyPostGameCarnageReportTeamEntry } from './DestinyPostGameCarnageReportTeamEntry'; /** @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.HistoricalStats.DestinyPostGameCarnageReportData} */ export interface DestinyPostGameCarnageReportData { /** Date and time for the activity. */ readonly period: string; /** * If this activity has "phases", this is the phase at which the activity was * started. This value is only valid for activities before the Beyond Light * expansion shipped. Subsequent activities will not have a valid value here. */ readonly startingPhaseIndex?: number; /** * True if the activity was started from the beginning, if that information is * available and the activity was played post Witch Queen release. */ readonly activityWasStartedFromBeginning?: boolean; /** Details about the activity. */ readonly activityDetails: DestinyHistoricalStatsActivity; /** Collection of players and their data for this activity. */ readonly entries: DestinyPostGameCarnageReportEntry[]; /** Collection of stats for the player in this activity. */ readonly teams: DestinyPostGameCarnageReportTeamEntry[]; }