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;
use JMS\Serializer\Annotation\Type;
final class ThreeDs
{
/**
* @var bool|null
* @SerializedName("Authenticated")
* @Type("boolean")
*/
private $authenticated;
* @SerializedName("LiabilityShift")
private $liabilityShift;
* @var string|null
* @SerializedName("Xid")
* @Type("string")
private $xid;
* @SerializedName("VerificationValue")
private $verificationValue;
public function isAuthenticated(): ?bool
return $this->authenticated;
}
public function isLiabilityShift(): ?bool
return $this->liabilityShift;
public function getXid(): ?string
return $this->xid;
public function getVerificationValue(): ?string
return $this->verificationValue;