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 Payer
{
/**
* @var string|null
* @SerializedName("Id")
*/
private $id;
* @SerializedName("IpAddress")
* @Type("string")
private $ipAddress;
* @SerializedName("IpLocation")
private $ipLocation;
* @var Address|null
* @SerializedName("DeliveryAddress")
* @Type("Ticketpark\SaferpayJson\Response\Container\Address")
private $deliveryAddress;
* @SerializedName("BillingAddress")
private $billingAddress;
public function getId(): ?string
return $this->id;
}
public function getIpAddress(): ?string
return $this->ipAddress;
public function getIpLocation(): ?string
return $this->ipLocation;
public function getDeliveryAddress(): ?Address
return $this->deliveryAddress;
public function getBillingAddress(): ?Address
return $this->billingAddress;