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\Transaction;
use JMS\Serializer\Annotation\SerializedName;
use JMS\Serializer\Annotation\Type;
use Ticketpark\SaferpayJson\Response\Response;
final class CancelResponse extends Response
{
/**
* @var string|null
* @SerializedName("TransactionId")
* @Type("string")
*/
private $transactionId;
* @SerializedName("OrderId")
private $orderId;
* @SerializedName("Date")
private $date;
public function getTransactionId(): ?string
return $this->transactionId;
}
public function getOrderId(): ?string
return $this->orderId;
public function getDate(): ?string
return $this->date;