for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Ticketpark\SaferpayJson\Request\Container;
use JMS\Serializer\Annotation\SerializedName;
final class CaptureReference
{
/**
* @var string|null
* @SerializedName("CaptureId")
*/
private $captureId;
* @SerializedName("TransactionId")
private $transactionId;
* @SerializedName("OrderId")
private $orderId;
* @SerializedName("OrderPartId")
private $orderPartId;
public function getCaptureId(): ?string
return $this->captureId;
}
public function setCaptureId(?string $captureId): self
$this->captureId = $captureId;
return $this;
public function getTransactionId(): ?string
return $this->transactionId;
public function setTransactionId(?string $transactionId): self
$this->transactionId = $transactionId;
public function getOrderId(): ?string
return $this->orderId;
public function setOrderId(?string $orderId): self
$this->orderId = $orderId;
public function getOrderPartId(): ?string
return $this->orderPartId;
public function setOrderPartId(?string $orderPartId): self
$this->orderPartId = $orderPartId;