episodeId is only available when type is equal to movie and only has one episode.
191 | 192 | ```javascript 193 | { 194 | title: string, 195 | description: string, 196 | type: "movie" | "tvSeries", 197 | stats: { name: string, value: string | string[] }[], 198 | episodeId?: string, 199 | related: [ 200 | { 201 | id: string, 202 | title: string, 203 | poster: string, 204 | stats: { 205 | seasons: string, 206 | rating: string, 207 | } 208 | }, 209 | { 210 | id: string, 211 | title: string, 212 | poster: string, 213 | stats: { 214 | year: string, 215 | duration: string, 216 | rating: string, 217 | } 218 | }, 219 | { ... } 220 | ] 221 | } 222 | ``` 223 | 224 |