for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Ticketpark\SaferpayJson\Response\Container;
use JMS\Serializer\Annotation\SerializedName;
final class FraudPrevention
{
const APPROVED = 'APPROVED';
const MANUAL_REVIEW = 'MANUAL_REVIEW';
/**
* @var string|null
* @SerializedName("Result")
*/
private $result;
public function getResult(): ?string
return $this->result;
}