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;
use JMS\Serializer\Annotation\Type;
final class ClientInfo
{
/**
* @var string|null
* @SerializedName("ShopInfo")
*/
private $shopInfo;
* @SerializedName("OsInfo")
private $osInfo;
public function getShopInfo(): ?string
return $this->shopInfo;
}
public function setShopInfo(?string $shopInfo): self
$this->shopInfo = $shopInfo;
return $this;
public function getOsInfo(): ?string
return $this->osInfo;
public function setOsInfo(?string $osInfo): self
$this->osInfo = $osInfo;