for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class updateResponse
{
/**
* @var SaveResult
*/
protected $result = null;
* @param SaveResult $result
public function __construct($result = null)
$this->result = $result;
}
* @return SaveResult
public function getResult()
return $this->result;
* @return \SForce\Wsdl\updateResponse
public function setResult($result)
return $this;