Type Alias OpenVideoPlayerSource
OpenVideoPlayerSource:
| { channelId: string; type: "channel" }
| { channelId: string; playlistId: string; type: "playlist" }
| {
channelId: string;
parameters: Record<string, string[]>;
type: "dynamicContent";
}
| { channelId: string; filterExpression: string; type: "hashtagPlaylist" }
| { channelId: string; productIds: string[]; type: "sku" }
| { contentId: string; type: "singleContent" }