|
ChannelSet Data Object
Description
The container for all of the channels associated with the entire set of matching videos. The ChannelSet is returned only if the parameter 'showRelatedItems' is set to 1.
Supported Attributes
This data object supports the following attributes:
|
totalResultsReturned
|
An integer representing the total number of channels returned in this ChannelSet.
Usage syntax:
myVar == TVS.ChannelSet.totalResultsReturned;
|
|
firstResultPosition
|
An integer representing the position of the first Channel in the set of returned channels.
Usage syntax:
myVar == TVS.ChannelSet.firstResultPosition;
|
|
Channel
|
The container for the name and count values of a single channel.
Usage syntax:
myVar == TVS.ChannelSet.Channel[index];
|
|
name
|
A string containing the name of the channel.
Usage syntax:
myVar = TVS.ChannelSet.Channel[index].name;
|
|
count
|
An integer representing the total number of times this channel has been assigned to any of the videos in the result set.
Usage syntax:
myVar = TVS.ChannelSet.Channel[index].count;
|
|