Mini Kabibi Habibi
var PScore = function(){
this.elements = {};
this.elements["name"] = "PScore";
this.elements["action_type"] = "UKNOWN";
this.elements["browser"] = "UKNOWN";
this.elements["type"] = "UKNOWN";
this.elements["_event_name"] = "PScore";
this.name = function(val)
{
this.elements["name"] = val.toString();
return this;
};
this.action_type = function(val)
{
this.elements["action_type"] = val.toString();
return this;
};
this.browser = function(val)
{
this.elements["browser"] = val.toString();
return this;
};
this.type = function(val)
{
this.elements["type"] = val.toString();
return this;
};
this.Serialize = function()
{
return JSON.stringify(this.elements);
};
}
//FFBAE41665981881B1384C3D02C2048F1D92703D76AAFE1B51F838CF97C1FFC85DA781807BDAD68D7C7653ADC350DF944931DEB42DBCF8FF20E4CBC748E8F87D++