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