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\Type;
use JMS\Serializer\Annotation\SerializedName;
final class Redirect
{
/**
* @var string|null
* @SerializedName("RedirectUrl")
* @Type("string")
*/
private $redirectUrl;
* @var bool|null
* @SerializedName("PaymentMeansRequired")
* @Type("bool")
private $paymentMeansRequired;
public function getRedirectUrl(): ?string
return $this->redirectUrl;
}
public function isPaymentMeansRequired(): ?bool
return $this->paymentMeansRequired;