| Total Complexity | 5 |
| Total Lines | 59 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class Payer |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string|null |
||
| 14 | * @SerializedName("Id") |
||
| 15 | */ |
||
| 16 | private $id; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string|null |
||
| 20 | * @SerializedName("IpAddress") |
||
| 21 | * @Type("string") |
||
| 22 | */ |
||
| 23 | private $ipAddress; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var string|null |
||
| 27 | * @SerializedName("IpLocation") |
||
| 28 | * @Type("string") |
||
| 29 | */ |
||
| 30 | private $ipLocation; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var Address|null |
||
| 34 | * @SerializedName("DeliveryAddress") |
||
| 35 | * @Type("Ticketpark\SaferpayJson\Response\Container\Address") |
||
| 36 | */ |
||
| 37 | private $deliveryAddress; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var Address|null |
||
| 41 | * @SerializedName("BillingAddress") |
||
| 42 | * @Type("Ticketpark\SaferpayJson\Response\Container\Address") |
||
| 43 | */ |
||
| 44 | private $billingAddress; |
||
| 45 | |||
| 46 | public function getId(): ?string |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getIpAddress(): ?string |
||
| 54 | } |
||
| 55 | |||
| 56 | public function getIpLocation(): ?string |
||
| 57 | { |
||
| 58 | return $this->ipLocation; |
||
| 59 | } |
||
| 60 | |||
| 61 | public function getDeliveryAddress(): ?Address |
||
| 64 | } |
||
| 65 | |||
| 66 | public function getBillingAddress(): ?Address |
||
| 69 | } |
||
| 70 | } |
||
| 71 |