for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lyal\Checkr\Entities\Resources;
use Lyal\Checkr\Traits\Listable;
class AdverseItem extends AbstractResource
{
use Listable;
/**
* AdverseItem constructor.
* @param null $values
$values
null
$client
* @param null $client
*/
public function __construct($values = NULL, $client = NULL)
$this->setFields([
'id',
'object',
'text'
]);
$this->setListPath('reports/:report_id/adverse_items');
parent::__construct($values, $client);
}