|
TagSet Data Object
Description
The container for all of the tags associated with the entire set of matching videos. The TagSet 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 tags returned in this TagSet.
Usage syntax:
myVar = TVS.TagSet.totalResultsReturned;
|
|
firstResultPosition
|
An integer representing the position of the first Tag in the set of returned tags.
Usage syntax:
myVar = TVS.TagSet.firstResultPosition;
|
|
Tag
|
The container for the name and count values of a single tag.
Usage syntax:
myVar = TVS.TagSet.Tag[index];
|
|
name
|
A string containing the name of the tag.
Usage syntax:
myVar = TVS.TagSet.Tag[index].name;
|
|
count
|
An integer representing the total number of times this tag has been assigned to any of the videos in the result set.
Usage syntax:
myVar = TVS.TagSet.Tag[index].count;
|
|