function EpgOndemandItem(id, title, url, created, fromDate, toDate, description, active, imageUrl, webUrl, mediaType, parents){
	this.id = id;
	this.title = title;
	this.url = url;
	this.created = created;
	this.fromDate = fromDate;
	this.toDate = toDate;
	this.description = description;
	this.active = active;
	this.imageUrl = imageUrl;
	this.webUrl = webUrl;
	this.mediaType = mediaType;
	this.parents = parents;
}