for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Audiens\AppnexusClient\entity;
/**
* Class Error
*/
class Error
{
use HydratableTrait;
protected $error_id;
protected $error;
protected $error_description;
protected $error_code;
* @return mixed
public function getErrorId()
return $this->error_id;
}
public function getError()
return $this->error;
public function getErrorDescription()
return $this->error_description;
public function getErrorCode()
return $this->error_code;