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