function Facet(categoryId,count,categoryName,image,identifier,parentId){this.categoryId=categoryId;this.count=count;this.categoryName=categoryName;this.image=image;this.identifier=identifier;this.parentId=parentId;this.getIdentifiers=function(){var output=null;this.identifier==null?output=new Array():output=this.identifier.split(';');return output;};this.toString=function(){var output='Facet:{';output+='[categoryId: '+categoryId;output+='],[count: '+count;output+='],[categoryName: '+categoryName;output+='],[image: '+image;output+='],[identifier: '+identifier;output+='],[parentId: '+parentId;output+=']}';return output;};}
