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