/** * 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 { TrendingTrendingEntryDestinyRitual } from './trendingTrendingEntryDestinyRitual'; import { TrendingTrendingEntryNews } from './trendingTrendingEntryNews'; import { TrendingTrendingEntryDestinyActivity } from './trendingTrendingEntryDestinyActivity'; import { TrendingTrendingEntryDestinyItem } from './trendingTrendingEntryDestinyItem'; import { TrendingTrendingEntryCommunityCreation } from './trendingTrendingEntryCommunityCreation'; import { TrendingTrendingEntrySupportArticle } from './trendingTrendingEntrySupportArticle'; export interface TrendingTrendingDetail { identifier?: string; entityType?: number; news?: TrendingTrendingEntryNews; support?: TrendingTrendingEntrySupportArticle; destinyItem?: TrendingTrendingEntryDestinyItem; destinyActivity?: TrendingTrendingEntryDestinyActivity; destinyRitual?: TrendingTrendingEntryDestinyRitual; creation?: TrendingTrendingEntryCommunityCreation; }