for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lyal\Checkr\Entities\Resources;
class Verification extends AbstractResource
{
public function __construct($values = NULL, $client = NULL)
$this->setFields(
[
'id',
'object',
'uri',
'created_at',
'completed_at',
'verification_type',
'verification_url'
]
);
parent::__construct($values, $client);
}