for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class ExtendedErrorDetails
{
/**
* @var ExtendedErrorCode
*/
protected $extendedErrorCode = null;
* @var string
protected $any = null;
* @param ExtendedErrorCode $extendedErrorCode
* @param string $any
public function __construct($extendedErrorCode = null, $any = null)
$this->extendedErrorCode = $extendedErrorCode;
$this->any = $any;
}
* @return ExtendedErrorCode
public function getExtendedErrorCode()
return $this->extendedErrorCode;
* @return \SForce\Wsdl\ExtendedErrorDetails
public function setExtendedErrorCode($extendedErrorCode)
return $this;
* @return string
public function getAny()
return $this->any;
public function setAny($any)