for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class DeleteResult
{
/**
* @var Error[]
*/
protected $errors = null;
* @var ID
protected $id = null;
* @var boolean
protected $success = null;
* @param boolean $success
public function __construct($success = null)
$this->success = $success;
}
* @return Error[]
public function getErrors()
return $this->errors;
* @param Error[] $errors
* @return \SForce\Wsdl\DeleteResult
public function setErrors(array $errors = null)
$this->errors = $errors;
return $this;
* @return ID
public function getId()
return $this->id;
* @param ID $id
public function setId($id)
$this->id = $id;
* @return boolean
public function getSuccess()
return $this->success;
public function setSuccess($success)