/** * 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 { DestinyDefinitionsSeasonsDestinySeasonPreviewImageDefinition } from './destinyDefinitionsSeasonsDestinySeasonPreviewImageDefinition'; /** * Optional - Defines the promotional text, images, and links to preview this season. */ export interface DestinyDefinitionsSeasonsDestinySeasonDefinitionPreview { /** * A localized description of the season. */ description?: string; /** * A relative path to learn more about the season. Web browsers should be automatically redirected to the user\'s Bungie.net locale. For example: \"/SeasonOfTheChosen\" will redirect to \"/7/en/Seasons/SeasonOfTheChosen\" for English users. */ linkPath?: string; /** * An optional link to a localized video, probably YouTube. */ videoLink?: string; /** * A list of images to preview the seasonal content. Should have at least three to show. */ images?: Array; }