The container for all of the watchlists for a user.
This data object supports the following attributes:
|
totalResultsReturned
|
An integer representing the total number of queries returned.
Usage syntax:
myVar = TVS.WatchlistSet.totalResultsReturned;
|
|
Watchlist
|
The container for the query, title, and rssUrl of a watchlist.
Usage syntax:
myVar = TVS.WatchlistSet.Watchlist[index];
|
|
query
|
A string containing the watchlist query.
Usage syntax:
myVar = TVS.WatchlistSet.Watchlist[index].query;
|
|
title
|
A string containing the watchlist title.
Usage syntax:
myVar = TVS.WatchlistSet.Watchlist[index].title;
|
|
rssUrl
|
A string containing the watchlist rssUrl.
Usage syntax:
myVar = TVS.WatchlistSet.Watchlist[index].rssUrl;
|