Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | final class PendingNotification |
||
10 | { |
||
11 | /** |
||
12 | * @var array<string>|null |
||
13 | * @SerializedName("MerchantEmails") |
||
14 | */ |
||
15 | private $merchantEmails = []; |
||
16 | |||
17 | /** |
||
18 | * @var string|null |
||
19 | * @SerializedName("NotifyUrl") |
||
20 | */ |
||
21 | private $notifyUrl; |
||
22 | |||
23 | public function getMerchantEmails(): ?array |
||
24 | { |
||
25 | return $this->merchantEmails; |
||
26 | } |
||
27 | |||
28 | public function setMerchantEmails(?array $merchantEmails): self |
||
29 | { |
||
30 | $this->merchantEmails = $merchantEmails; |
||
31 | |||
32 | return $this; |
||
33 | } |
||
34 | |||
35 | public function getNotifyUrl(): ?string |
||
36 | { |
||
37 | return $this->notifyUrl; |
||
38 | } |
||
39 | |||
40 | public function setNotifyUrl(?string $notifyUrl): self |
||
45 | } |
||
46 | } |
||
47 |