for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class DataCategory
{
/**
* @var DataCategory[]
*/
protected $childCategories = null;
* @var string
protected $label = null;
protected $name = null;
* @param string $label
* @param string $name
public function __construct($label = null, $name = null)
$this->label = $label;
$this->name = $name;
}
* @return DataCategory[]
public function getChildCategories()
return $this->childCategories;
* @param DataCategory[] $childCategories
* @return \SForce\Wsdl\DataCategory
public function setChildCategories(array $childCategories = null)
$this->childCategories = $childCategories;
return $this;
* @return string
public function getLabel()
return $this->label;
public function setLabel($label)
public function getName()
return $this->name;
public function setName($name)