Inheritance: extends DataEntry
 public function __construct($category = null, $coverage = null, $domainName = null, $isoLanguage = null, $levelOfDetail = null)
 {
     parent::__construct();
     $this->category = $category;
     $this->coverage = $coverage;
     $this->domainName = $domainName;
     $this->isoLanguage = $isoLanguage;
     $this->levelOfDetail = $levelOfDetail;
 }
 public function __construct($category = null, $coverage = null, $domainName = null, $isoLanguage = null, $recommendedCpc = null, $hasChild = null, $categoryRank = null, $levelOfDetail = null)
 {
     parent::__construct();
     $this->category = $category;
     $this->coverage = $coverage;
     $this->domainName = $domainName;
     $this->isoLanguage = $isoLanguage;
     $this->recommendedCpc = $recommendedCpc;
     $this->hasChild = $hasChild;
     $this->categoryRank = $categoryRank;
     $this->levelOfDetail = $levelOfDetail;
 }