function EpgStation(id, title, stationkey, created, description, active, imageUrl, smallImageUrl, largeImageUrl, webUrl, introUrl, mediaType, parents){
	this.id = id;
	this.title = title;
	this.stationkey = stationkey;
	this.created = created;
	this.description = description;
	this.active = active;
	this.imageUrl = imageUrl;
	this.smallImageUrl = smallImageUrl;
	this.largeImageUrl = largeImageUrl;
	this.webUrl = webUrl;
	this.introUrl = introUrl;
	this.mediaType = mediaType;
	this.parents = parents;
}