import { DestinyHistoricalStatsDestinyHistoricalStatsValueBasic } from './destinyHistoricalStatsDestinyHistoricalStatsValueBasic'; import { DestinyHistoricalStatsDestinyHistoricalStatsValueWeighted } from './destinyHistoricalStatsDestinyHistoricalStatsValueWeighted'; import { DestinyHistoricalStatsDestinyHistoricalStatsValuePga } from './destinyHistoricalStatsDestinyHistoricalStatsValuePga'; /** * Score earned by the team */ export interface DestinyHistoricalStatsDestinyPostGameCarnageReportTeamEntryScore { /** * Unique ID for this stat */ statId?: string; basic?: DestinyHistoricalStatsDestinyHistoricalStatsValueBasic; pga?: DestinyHistoricalStatsDestinyHistoricalStatsValuePga; weighted?: DestinyHistoricalStatsDestinyHistoricalStatsValueWeighted; /** * When a stat represents the best, most, longest, fastest or some other personal best, the actual activity ID where that personal best was established is available on this property. */ activityId?: number; }