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