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