for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultureKings\Afterpay\Model;
/**
* Class ErrorResponse
* @package CultureKings\Afterpay\Model
*/
class ErrorResponse
{
* @var string
protected $errorCode;
protected $errorId;
protected $message;
protected $httpStatusCode;
* @return string
public function getErrorCode()
return $this->errorCode;
}
* @param string $errorCode
*
* @return $this
public function setErrorCode($errorCode)
$this->errorCode = $errorCode;
return $this;
public function getErrorId()
return $this->errorId;
* @param string $errorId
public function setErrorId($errorId)
$this->errorId = $errorId;
public function getMessage()
return $this->message;
* @param string $message
public function setMessage($message)
$this->message = $message;
public function getHttpStatusCode()
return $this->httpStatusCode;
* @param string $httpStatusCode
public function setHttpStatusCode($httpStatusCode)
$this->httpStatusCode = $httpStatusCode;